home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / games2 / tads2205.lha / TADS / Version.doc < prev    next >
Text File  |  1996-02-20  |  153KB  |  3,316 lines

  1. TADS 2.2.0.5
  2. Unix Patchlevel 1
  3. 22-Nov-94 
  4.  
  5. Fixed a bug that caused window sizes > 135 to crash the run-time.
  6. Increased default buffer sizes.  The defaults that the compiler reports are
  7. actually wrong.  You probably won't have to make any buffers bigger unless
  8. you've got a *really* huge game.
  9.  
  10. See the general 2.2 changes below; there are many important new features.
  11.  
  12. TADS 2.1.2.2
  13. Unix Patchlevel 2
  14. 17-Feb-94
  15.  
  16. Unix packages now include the standard documentation.
  17.  
  18. Fixed a bug that caused commands like
  19.  
  20. >X, give me the Y
  21.  
  22. to crash the run-time.
  23.  
  24.  
  25. TADS 2.1.2.2
  26. Unix Patchlevel 1
  27. 29-Jan-94
  28.  
  29. Unix-specific changes applied to latest TADS source.  Unix versions 2.1.0.0
  30. pl2 through pl4 were never released, so please read the notes for those as
  31. well -- this is the first release version that incorporates those changes.
  32.  
  33. The window-resizing code seems to have been broken.  Resizing the window
  34. sends the run-time into space.  I'm looking into it.  For now, don't change
  35. the window size while playing.
  36.  
  37. adv.t and std.t have been updated to 2.1.2.2 as well.
  38.  
  39.  
  40. TADS 2.1.0.0
  41. Unix Patchlevel 4
  42. 16-Nov-93
  43.  
  44. Changed the runtime and compiler so that the heapsize is always set to the
  45. maximum.  An explicit -mh setting will override this.  Note that you cannot
  46. make the heap bigger than 64K, since TADS has to run under DOS in real
  47. mode, where data structures can only be 64K or smaller.
  48.  
  49.  
  50. TADS 2.1.0.0
  51. Unix Patchlevel 3
  52. 25-Oct-93
  53.  
  54. The adv.t and std.t files have been updated to 2.1.0.0.  The ones in the
  55. earlier archives were actually the 2.0.13 ones.  (Doh!)
  56.  
  57. Now tadsr tries to save the game to file "fatal#####.sav" when it gets a
  58. fatal signal, where ##### is the process ID.  Sometimes this file will be
  59. unuseable; other times it'll work fine -- it depends on where the signal
  60. occurs during execution.
  61.  
  62. Two environment variables now affect the behavior of the runtime:
  63.  
  64.     TADSSAVE: directory for save files
  65.         TADSGAME: directory for game files
  66.  
  67. These pathnames will be prepended to any save or game file that does not
  68. already have a slash in it.  For example, if
  69.  
  70.         TADSGAME=~you/games
  71.  
  72. and you type
  73.  
  74.      tadsr foo
  75.  
  76. the run-time will look for the file ~you/games/foo.gam.  Note that if you
  77. want to prevent this, you have to explictly put a ./ in the filename, or
  78. unset the TADSGAME environment variable.  The same goes for TADSSAVE.
  79.  
  80. Since some windowing systems clear the screen when the end-of-visual
  81. terminal code is sent out, tadsr now waits for a keypress before it
  82. terminates.  There is no way to disable this -- the run-time now ignores
  83. the -p flag entirely.  You can always see usage (and game endings) now,
  84. however, which is a plus!
  85.  
  86. The Emacs-style command line editing now handles ^D (delete character after
  87. cursor) and ^K (delete to end of line).
  88.  
  89. Since most Unix boxes have loads of real memory and even more virtual
  90. memory, I increased the size of the scrollback buffer eightfold.  It's now
  91. 256K.  This should be enough for marathon play sessions.
  92.  
  93. There are some known problems with the compiler -- core dumps on at least
  94. one big game, and core dumps when dealing with precompiled headers and
  95. modify/replace in another case.  I haven't been able to track these down,
  96. but they aren't restricted to one architecture.
  97.  
  98. One thing that's been reported as a bug but isn't: If you have the margin
  99. bell on in your xterm you'll get lots of rings as TADS updates the screen.
  100. The solution: turn off the margin bell!
  101.  
  102.  
  103. TADS 2.1.0.0
  104. Unix Patchlevel 2
  105.  
  106. Output handling has been improved again.  Terminal settings are restored
  107. properly upon suspend (^Z) or resume.  I improved a few other things that I
  108. don't remember now.  :)
  109.  
  110.  
  111. TADS 2.1.0.0
  112. Unix Patchlevel 1
  113.  
  114. The programs should now be quite stable on all supported platforms.
  115. Term handling has been vastly improved, so that the run-time should be
  116. comfortable over a 2400 baud connection.  The compiler now avoids
  117. all the screen handling stuff and just uses stdio for all output.
  118.  
  119. Starting with this release, Unix versions will be given patchlevel
  120. numbers in addition to the standard High Energy version number.
  121. There's one patch number of the general Unix sources, and another for
  122. the specific platform the binaries were compiled for.
  123.  
  124. General Unix notes:
  125.  
  126. The .GAM files are now 100% portable across platforms.  You can compile
  127. a game on a PC clone or Mac and then run the resulting .GAM directly
  128. under Unix (and vice versa).  Kudos to High Energy for that!
  129.  
  130. There is no maketrx program for the Unix versions.  Now that TADS is
  131. running on a much wider range of machines, creating binaries specific
  132. to a particular machine seems rather foolish, so I have not kept
  133. support for doing that in the this port.
  134.  
  135. The TADS run-time uses termcap routines for all output.  You will
  136. therefore need to run it on a terminal with window scrolling capability
  137. (i.e., most modern terminals).  If you find that the programs don't
  138. work properly with your terminal, please let me know -- termcap hacking
  139. is very error-prone, so I may have made a mistake in there somewhere.
  140. Before assuming that the problem is with the TADS run-time, however,
  141. try other programs on your system that use termcap, like vi.  (Emacs
  142. has its own term handling code, so it's not a good test.)
  143.  
  144. There a few things special to the Unix versions:
  145.  
  146.     o (Limited) Emacs-style command line editing:
  147.  
  148.         ^F    ahead one character
  149.         ^B    back one character
  150.         ^A    beginning of line
  151.         ^E    end of line
  152.         ^P    previous command in command list
  153.         ^N    next command in command list
  154.         ^K    kill to end of line
  155.         ^D    delete character after cursor
  156.  
  157.     o ESC enters scrollback mode (instead of F1).  Scrollback control
  158.       keys are listed on the top line.
  159.  
  160.     o Press ^L at any time to redraw the entire screen (if you
  161.       get a burst of line noise, for example)
  162.  
  163.     o Press ^Z (or whatever your SIGTSTP key is) to suspend the 
  164.       run-time.
  165.  
  166.     o tadsr recognizes SIGWINCH so that you can resize your
  167.       terminal window.  Text above the current line won't be
  168.       reformatted when you do this, but all subsequent text
  169.       will be formatted to fill the screen.  
  170.  
  171.       NOTE: Resize doesn't work in an OpenWindows cmdtool.
  172.  
  173. The output handling is still not absoultely optimal, but it's probably
  174. as good as it's going to get since the machine-independent TADS source
  175. imposes certain requirements on the behavior of the windowing functions.
  176.  
  177. Finally, please report bugs directly to the person listed as the
  178. maintainer for the port in the banner, not to High Energy.  That person
  179. is the only one (besides, perhaps, me) who's going to be fixing any
  180. problems specific to the Unix ports.
  181.  
  182. Dave Baggett
  183. dmb@ai.mit.edu
  184.  
  185. *-----------------------------------------------------------------------------*
  186. General TADS notes (From the DOS version)
  187. *-----------------------------------------------------------------------------*
  188.  
  189. This file contains a list of changes that have been made to TADS
  190. since the initial 2.0 release.  Most of the changes are fixes to
  191. bugs, so they don't change the documented behavior, but a few, as
  192. explained below, add new functionality to TADS.  Releases are
  193. listed with the most recent release first; each release incorporates
  194. all new features and bug fixes of each prior release unless
  195. otherwise stated.
  196.  
  197. 2.2.0  10/30/94  new features, enhancements, bug fixes
  198.  
  199.   - TADS now has support for reading and writing files.  This new
  200.     feature is intended to let you save information independently
  201.     of the game-saving mechanism, which allows you to transfer
  202.     information between sessions of a game, or even between two
  203.     different games.  The TADS file operations are not designed
  204.     as general-purpose file system operations; in particular,
  205.     these new functions don't have any provisions for creating or
  206.     reading formatted files, or for exchanging information with
  207.     programs other than TADS games.
  208.  
  209.     To open a file, use the fopen() function.  This function takes
  210.     two arguments:  a single-quoted string giving the name of the
  211.     file to open, using local file system conventions, and a "mode."
  212.     (For  maximum portability, you should avoid using volume names,
  213.     directories, folders, or other path information in filenames.)
  214.     The mode argument is one of these single-quoted string values:
  215.  
  216.         r    open file for reading; file must already exist
  217.         r+   open file for reading and writing; the file is
  218.              created if it doesn't already exist
  219.         w    create a new file for writing; the file is deleted
  220.              if it already exists
  221.         w+   create a new file for reading and writing; the file
  222.              is deleted if it already exists
  223.  
  224.     The return value of fopen() is a "file handle"; this is simply
  225.     a number that you you to perform subsequent operations on the
  226.     file.   For example, this opens a new file called TEST.OUT for
  227.     writing:
  228.  
  229.         fnum := fopen('test.out', 'w');
  230.  
  231.     To close an open file, use fclose():
  232.  
  233.         fclose(fnum);
  234.  
  235.     Note that the TADS runtime allows only a limited number of
  236.     files (currently 10) to be open simultaneously, so you should
  237.     close a file when you're done with it.
  238.  
  239.     To write to a file, use fwrite().  This function takes a file
  240.     handle, and a value to write; the value can be a string, a number,
  241.     or true.  The value can't be nil (this is because the fread() function
  242.     returns nil to indicate failure; if you could write nil to a file,
  243.     there would be no way to distinguish reading a valid nil from an
  244.     error condition).  fwrite() stores the value, along with information
  245.     on its type.
  246.  
  247.     The fwrite() function returns nil on success, true on failure.  If
  248.     the function returns true, it usually means that the disk is full.
  249.  
  250.        if (fwrite(fnum, 'string value!')
  251.            or fwrite(fnum, 123))
  252.            "Error writing file!";
  253.  
  254.     If the file is open for reading, you can read from the file with
  255.     the fread() function.  This function takes a file handle, and it
  256.     returns a value it reads from the file.  The value returned is
  257.     of the same type as the value originally written at this position
  258.     in the file with fwrite().  If this function returns nil, it
  259.     indicates that an error occurred; this usually means that no more
  260.     information is in the file (you've read past the end of the file).
  261.  
  262.        res := fread(fnum);
  263.        say(res);
  264.  
  265.     You can get the current byte position in the file with the ftell()
  266.     function:
  267.  
  268.        "The current seek position is << ftell(fnum) >>. ";
  269.  
  270.     The ftell() function returns a number giving the byte position
  271.     that will be read or written by the next file operation.
  272.  
  273.     You can set the file position with fseek() and fseekeof().  The
  274.     fseek() function moves the file position to a particular byte
  275.     position, relative to the beginning of the file.  For example,
  276.     this seeks to the very beginning of a file:
  277.  
  278.        fseek(fnum, 0);
  279.  
  280.     The fseekeof() function positions the file at its end:
  281.  
  282.        fseekeof(fnum);
  283.  
  284.     Note that you must be careful with fseek().  You should only seek
  285.     to positions that you obtained with the ftell() function; other
  286.     positions may be in the middle of a string or a number in the
  287.     file, so seeking to an arbitrary location and writing could
  288.     render the file unusable by partially overwriting existing data.
  289.  
  290.   - You can now "capture" displayed text to a string.  This new feature
  291.     allows you to examine and manipulate text displays, no matter how they
  292.     are generated.  To activate capturing, use the new built-in function
  293.     outcapture():
  294.  
  295.         stat := outcapture(true);
  296.  
  297.     This starts capturing text.  The return value is a status code that
  298.     you use in the subsequent call to end capturing; you don't need to do
  299.     anything with this status code except pass it to outcapture() when
  300.     you're finished capturing output.
  301.  
  302.     While capturing is in effect, everything that your game attempts to
  303.     display -- through double-quoted strings or through the say() built-in
  304.     function -- is hidden from the user and instead stored in a string.
  305.     Once outcapture(true) is called, no text will be displayed to the
  306.     user until you call this function:
  307.  
  308.         str := outcapture(stat);
  309.  
  310.     The second outcapture() call turns off capturing, and returns a string
  311.     that contains all of the text that was generated since the corresponding
  312.     outcapture(true).
  313.  
  314.     Note that the system automatically turns off capturing any time it
  315.     prompts the user for information.  The system turns off capturing
  316.     when it starts a new command, or when it needs to prompt the user
  317.     for information during a command, such as for disambiguation or to
  318.     request a missing direct or indirect object.  When the system turns
  319.     off output capturing, it clears the capture buffer, so any subsequent
  320.     call to outcapture(stat) will return an empty string.  You can capture
  321.     text only over the course of a single command line.
  322.  
  323.     The outcapture() function can be useful if you want to save some
  324.     text for later.  It's also useful if you want to be able to examine
  325.     the text that would be generated by a method such as sdesc or ldesc.
  326.     Since these methods directly display text, you can't directly obtain
  327.     a string representation of their values; using outcapture(), however,
  328.     you can let them "display" their values into a string that you can
  329.     then examine.
  330.  
  331.     Note that the status value returned from outcapture(true) allows you
  332.     to nest calls to outcapture().  Since the outcapture(stat) call
  333.     restores the capturing status that was in effect on the corresponding
  334.     call to outcapture(true), you don't have to worry when using outcapture()
  335.     about whether any of the methods you're calling are also using it.
  336.  
  337.   - TADS now allows you to create and delete objects dynamically
  338.     at run-time.  This is done through two new operators:  "new"
  339.     and "delete".
  340.  
  341.     To create a new object, use this syntax:
  342.  
  343.         x := new bookItem;
  344.  
  345.     This dynamically creates a new object whose superclass is bookItem.
  346.     When this statement is executed, the runtime creates a new object,
  347.     assigns its superclass to be bookItem, and executes the "construct"
  348.     method in the new object; this method can perform any creation-time
  349.     setup that's desired.  The default thing.construct in adv.t simply
  350.     moves the new object into its location -- this is necessary so that
  351.     the "contents" list of the location is updated to include the new
  352.     object.
  353.  
  354.     A new object inherits all of the vocabulary of its superclass.
  355.  
  356.     To destroy an object you have created, use this syntax:
  357.  
  358.         delete x;
  359.  
  360.     This first calls the "destruct" method of the object to notify it
  361.     that it is about to be deleted, then destroys the object.  Further
  362.     references to the object are illegal, since its memory has been
  363.     released (and thus may be given to another object).  The default
  364.     thing.destruct in adv.t moves the object into nil, which removes it
  365.     from its container's "contents" list -- this is necessary so that
  366.     the reference to the object in that list is removed.
  367.  
  368.     Only objects created with "new" can be destroyed with "delete".
  369.     Objects that are defined statically in your game's source file
  370.     cannot be deleted at run-time.
  371.  
  372.     Object creation and deletion works correctly with the UNDO
  373.     mechanism.  If the player uses UNDO after a move that created an
  374.     object, the object will be destroyed; likewise, if a player uses
  375.     UNDO after a turn that deletes an object, the object will be
  376.     re-created with the same property values it had prior to deletion.
  377.     Similarly, dynamically-created objects are preserved across SAVE
  378.     and RESTORE operations.
  379.  
  380.     Note that TADS does not perform any garbage collection on
  381.     dynamically-created objects.  The system is not capable of
  382.     determining whether an object is accessible or not.  Hence, if
  383.     you lose track of any objects you create with "new", they will
  384.     remain in memory forever -- they will even be saved along with
  385.     saved games and restored when the games are restored.  You must
  386.     be careful to keep track of all objects you create to avoid
  387.     filling all available memory (and the swap file) with unreachable
  388.     objects.
  389.  
  390.   - It is now possible to dynamically add to and delete from the
  391.     vocabulary words of an object.  You can also get the vocabulary
  392.     words of an object at run-time.
  393.  
  394.     To add to an object's vocabulary, use the new "addword" built-in
  395.     function.  This function takes three arguments:  an object, a
  396.     vocabulary property pointer, and a word to add.  For example,
  397.     to add 'red' as an adjective to the object myBook, you would
  398.     do this:
  399.  
  400.         addword(myBook, &adjective, 'red');
  401.  
  402.     To delete the same word, you would write a similar call to the
  403.     new built-in function "delword":
  404.  
  405.         delword(myBook, &adjective, 'red');
  406.  
  407.     You can add to and delete from the words of any object, including
  408.     both static objects (explicitly defined in your source code) and
  409.     dynamically-created objects (created with the "new" operator).
  410.  
  411.     Changes made by addword and delword are tracked correctly by the
  412.     UNDO mechanism, and are saved and restored along with saved games.
  413.  
  414.     To get the words belonging to an object, use the new "getwords"
  415.     built-in function.  This function takes two arguments:  an object,
  416.     and a property pointer; it returns a list of (single-quoted)
  417.     strings, which are the vocabulary words for the object.  For
  418.     example, assume we define myBook as follows:
  419.  
  420.         myBook:  item
  421.             sdesc = "small red book"
  422.             adjective = 'small' 'red' 'tiny'
  423.             noun = 'book'
  424.             location = room2
  425.         ;
  426.  
  427.     Also assume we haven't made any calls to addword() or delword() for
  428.     myBook.  In this case,
  429.  
  430.         getwords(myBook, &adjective)
  431.  
  432.     would return this list:
  433.  
  434.         ['small' 'red' 'tiny']
  435.  
  436.     Note that the order of the words in the list is not predictable,
  437.     so you shouldn't expect the words to be in the same order as they
  438.     were when you defined them in the source file, or in the same
  439.     order as they were added with addword().
  440.  
  441.   - We've added a new function that lets you get information on a verb.
  442.     The new function is verbinfo().  This function lets you get the
  443.     verification and action properties for a verb.  The new function
  444.     takes one or two arguments:  the first is the deepverb object whose
  445.     information you want to retrieve; the optional second argument is
  446.     a preposition object.  If you call verbinfo() with only the verb
  447.     argument, it returns the verification and action properties that
  448.     are defined with the doAction definition for the verb.  If you
  449.     also include the preposition argument, it returns the properties
  450.     that are defined with the ioAction definition for that preposition.
  451.  
  452.     The value returned by this function is a list.  If you call verbinfo()
  453.     with only the deepverb argument, the list has two elements:
  454.  
  455.       [1]   direct object verification property pointer (verDoXxxx)
  456.       [2]   direct object action property pointer (doXxxx)
  457.  
  458.     If you call verbinfo() with both the verb and preposition arguments,
  459.     the return value is a list with four elements:
  460.  
  461.       [1]   direct object verification property pointer (verDoXxxx)
  462.       [2]   indirect object verification property pointer (verIoXxxx)
  463.       [3]   indirect object action property pointer (ioXxxx)
  464.       [4]   true if ioAction has [disambigDobjFirst] flag, nil otherwise
  465.  
  466.     In either case, if no matching doAction or ioAction definition
  467.     exists for the verb, this function returns nil.
  468.  
  469.     Note that it is possible that additional flags (similar to
  470.     disambigDobjFirst) may be added in the future; the returned list
  471.     may be expanded to include information on any such added flags.
  472.     So, for compatibility with future versions, we recommend that you
  473.     don't write conditional code based on the length of the list.
  474.     The lists will never shrink, but they may expand.
  475.  
  476.     For the removeVerb object defined in adv.t, you would get these
  477.     results:
  478.  
  479.       verbinfo(removeVerb)
  480.         = [&verDoUnwear &doUnwear]
  481.  
  482.       verbinfo(removeVerb, fromPrep)
  483.         = [&verDoRemoveFrom &verIoRemoveFrom &ioRemoveFrom nil]
  484.  
  485.   - The ability to create new objects at run-time leads to some
  486.     interesting problems involving indistinguishable objects.  Although
  487.     you should generally use addword (see below) to make your newly-created
  488.     objects distinguishable from one another, this will not always be
  489.     desirable; for example, if you create new gold pieces that serve
  490.     as currency, you will probably not want them to be uniquely named.
  491.  
  492.     To support indistinguishable objects, especially those created
  493.     dynamically at run-time, the system now has a property that you
  494.     can set to indicate to the parser that an object does not need to
  495.     be distinguished from others of the same class.  The new property
  496.     is "isEquivalent".  When isEquivalent returns true for an object,
  497.     all other objects with the same immediate superclass are considered
  498.     interchangeable by the parser.  When a player uses one of these
  499.     objects in a command, the parser will simply pick one arbitrarily
  500.     and use it, without asking the player which one.
  501.  
  502.     If a player uses a noun that is ambiguous with multiple equivalent
  503.     items and one or more other items, the parser will need to
  504.     disambiguate the objects as usual.  In such cases, the parser's
  505.     question will list the distinguishable items only once.  For
  506.     example, assume we have five gold coins that are all equivalent
  507.     (in other words, they all have isEquivalent set to true, and they
  508.     all are immediate subclasses of the same class).  Assume further
  509.     that a silver coin and a bronze coin are also present in the room.
  510.  
  511.        Treasure Room
  512.            You see a bronze coin, five gold coins, and a silver
  513.        coin here.
  514.  
  515.        >get coin
  516.        Which coin do you mean, the bronze coin, a gold coin, or
  517.        the silver coin?
  518.  
  519.     Note that the objects which appear only once are listed with "the"
  520.     (using the thedesc property), while the indistinguishable objects
  521.     are listed only once, with "a" (using the adesc property).
  522.  
  523.   - The new property pluraldesc has been added to thing in adv.t.
  524.     The definition in thing simply adds an "s" to the end of the
  525.     sdesc property.  This new property is used by listcont(obj)
  526.     when multiple equivalent objects are present in a list; see the
  527.     information on the changes to listcont(obj) for details.
  528.  
  529.   - The adv.t functions listcont(obj) and itemcnt(list) have been
  530.     changed to support indistinguishable objects.  To support this
  531.     new functionality, the new functions isIndistinguishable(obj1, obj2)
  532.     and sayPrefixCount(cnt), and the new property pluraldesc, have
  533.     been added to adv.t.
  534.  
  535.     isIndistinguishable(obj1, obj2) returns true if the two objects
  536.     obj1 and obj2 are equivalent for the purposes of listing.  The
  537.     two objects are considered equivalent if both have the same
  538.     first superclass (the return value of the new built-in function
  539.     firstsc(obj)), either they are both being worn or neither is
  540.     worn, and either both are lit lightsources or neither is.  This
  541.     function doesn't test the isEquivalent property of either object,
  542.     since it's assumed that it will only be called if an object has
  543.     already been found whose isEquivalent property is set.
  544.  
  545.     sayPrefixCount(cnt) displays a number.  If the parameter cnt is
  546.     a small number (from one to twenty), the spelled-out number will
  547.     be displayed (for example, "five" will displayed if cnt = 5).  If
  548.     the count is larger, the number will be displayed as digits ("35"
  549.     will be displayed if cnt = 35).  This function is used by
  550.     listcont(obj) to show the number of equivalent items when more
  551.     than one equivalent item is being listed.
  552.  
  553.     itemcnt(list) now returns the number of distinguishable items in
  554.     the list that are to be listed.  For each item in the list whose
  555.     isEquivalent property is true, itemcnt(list) checks each other
  556.     item in the list, and counts each set of equivalent items only once.
  557.     Hence, if a list consists entirely of equivalent items, itemcnt(list)
  558.     will return at most 1 (it will return 0 if none of the items are
  559.     listable).
  560.  
  561.     listcont(obj) will list each set of indistinguishable items in the
  562.     contents list only once, and will show the number of each such item.
  563.     To display the number, the new function sayPrefixCount(cnt) is
  564.     used.  For example, if a room contains a silver coin, a bronze coin,
  565.     and five gold coins (all with the isListed property set to true),
  566.     listcont(room) will display this:
  567.  
  568.        a silver coin, a bronze coin, and five gold coins
  569.  
  570.   - A new built-in function has been added to make it possible to
  571.     implement the functionality of the new listcont method.  The new
  572.     function, firstsc(obj), returns the first immediate superclass of
  573.     the given object (or nil if the object has no superclass).  This
  574.     function, along with the isEquivalent property, can be used to
  575.     determine if two objects should be considered indistinguishable.
  576.  
  577.   - A new special word has been added:  ANY, which is equivalent to
  578.     EITHER.  These words are at the end of the original specialWords
  579.     list; for compatibility with past versions, a specialWords list
  580.     that omits this position is still legal, and indicates that the
  581.     default ('any' = 'either') should be used for this slot.
  582.  
  583.     This special word slot is used by the parser during disambiguation.
  584.     Whenever the parser asks the player to choose an object from a list
  585.     of ambiguous objects, it will accept ANY:
  586.  
  587.         >take coin
  588.         Which coin do you mean, the silver coin, the bronze coin, or
  589.         the gold coin?
  590.  
  591.         >any
  592.         silver coin:  Taken.
  593.  
  594.     When ANY is used in these cases, the parser will simply pick one
  595.     of the objects arbitrarily.  Note that it displays the chosen
  596.     object in the same manner as it would if multiple objects were
  597.     being used.
  598.  
  599.     In addition, the parser will accept noun phrases that start with
  600.     ANY to indicate that any object matching the given noun phrase is
  601.     acceptable; the parser will choose one of the objects arbitrarily
  602.     in these cases.  For example:
  603.  
  604.         >take any coin
  605.         silver coin:  Taken.
  606.  
  607.         >look at any of the coins
  608.         bronze coin:  It's a valuable 1964 Tadsmid, worth over
  609.         .0004 cents on today's scrap bronze market.
  610.  
  611.     The player can also specify the number of items to take.  When
  612.     a number of items is specified, it must be applied to a plural
  613.     noun phrase, and it means the same thing as "any," except that
  614.     the parser (arbitrarily) chooses the given number of items rather
  615.     than just one.  For example:
  616.  
  617.     >look at 3 coins
  618.     >look at any 3 coins
  619.     >look at 3 of the coins
  620.     >look at any 3 of the coins
  621.  
  622.     As a special case, a count of "1" can be used with a singular
  623.     noun phrase.  It means the same thing as "any."
  624.  
  625.         >look at 1 coin
  626.  
  627.   - A new convenience feature, similar to doSynonym and ioSynonym but
  628.     somewhat easier to use, has been added.  You can now specify that
  629.     a method in one object should instead be sent to another object.
  630.     An example:
  631.  
  632.         desk: fixeditem
  633.             noun = 'desk'
  634.             sdesc = "desk"
  635.             location = office
  636.             doOpen -> deskDrawer
  637.             doClose -> deskDrawer
  638.         ;
  639.  
  640.     This specifies that doOpen, verDoOpen, doClose, and verDoClose
  641.     calls should be sent to the deskDrawer object when received by
  642.     the desk.  Note that this should only be used for standard verb
  643.     handler methods, because it redirects both the method indicated
  644.     and its verXoVerb equivalent.
  645.  
  646.   - The parser calls a new method, multisdesc, when displaying the
  647.     name of an object that's part of a list of objects.  Previously,
  648.     the parser simply used sdesc in these cases.  The default adv.t
  649.     definition of thing.multisdesc simply calls the object's sdesc.
  650.     This new method is intended to allow you greater control over
  651.     the display in situations like this:
  652.  
  653.       >get all
  654.       book:  Taken.
  655.       rug:  That's much too heavy to carry.
  656.  
  657.     The object names listed before the colons are now displayed
  658.     with multisdesc.
  659.  
  660.     For compatibility with old games, if an object being listed does
  661.     not define or inherit a multisdesc property, its sdesc is used
  662.     instead.  This ensures that games compiled with previous versions
  663.     of adv.t will continue working properly.
  664.  
  665.   - A new user-defined function that the parser calls has been added.
  666.     This new function is called preparseCmd(), and is similar to
  667.     preparse().  Whereas preparse() is called once for an entire
  668.     command line, and is called with the original, unfiltered text
  669.     of the player's command line, preparseCmd() is called separately
  670.     for each command on a command line if more then one command is
  671.     entered.  Furthermore, preparseCmd() is called after the command
  672.     has been "tokenized" (broken into individual words).  Whereas the
  673.     argument to preparse() is a string with the entire command line,
  674.     the argument to preparseCmd() is a list, each entry of which is
  675.     a (single-quoted) string giving an individual word.  Using the new
  676.     function, you can exert much greater control over how a command
  677.     is parsed, including rewriting a command entirely.
  678.  
  679.     preparseCmd() is called immediately before Me.roomCheck() is called
  680.     for the command.  This call is made prior to any disambiguation or
  681.     object defaulting.
  682.  
  683.     If preparseCmd() returns nil, the command is abandoned (but no
  684.     error message is displayed), and no fuses or daemons are run.  If
  685.     the function returns true, the command proceeds as normal.  Any
  686.     remaining commands on the same line are executed regardless of the
  687.     return value from preparseCmd().  (If you need to cancel the entire
  688.     rest of the command line, one approach would be to set a property
  689.     in the global object to indicate to preparseCmd() that all commands
  690.     are to be ignored; preparseCmd() would always check this property
  691.     before doing anything else, and return nil if it were set.  You
  692.     could clear this property in preparse() so that commands always
  693.     start off enabled.)
  694.  
  695.     In addition, preparseCmd() can return a list of (single-quoted)
  696.     strings, in which case the parser starts over parsing the list
  697.     instead of the original command.  The list is limited to a maximum
  698.     of 128 characters, with one additional character of overhead per
  699.     word -- in other words, you can't make the new command longer
  700.     than the original command, which is limited to the same maximum
  701.     when entered by the player in the first place.  However, you can
  702.     otherwise rewrite the command entirely.  If you want to include
  703.     any special words in the new command, use the conventions described
  704.     below (for example, if you want to include 'and' in the new command,
  705.     use ',' instead).  After the new command inserted by preparseCmd()
  706.     has been processed, the parser will resume processing any remaining
  707.     commands on the player's original command line.
  708.  
  709.     The new command list returned by preparseCmd() can contain multiple
  710.     commands.  Simply separate the commands with commas (',') in your
  711.     list.
  712.  
  713.     If preparseCmd() returns a list, preparseCmd() will be invoked on
  714.     the new command.  However, preparseCmd() is not allowed to return
  715.     another new command in these cases -- if it does, the parser will
  716.     assume that preparseCmd() is looping, and will generate an error.
  717.  
  718.     Several new parseError codes have been added to respond to error
  719.     conditions that can arise from preparseCmd():
  720.  
  721.         32  Internal game error: preparseCmd returned an invalid list
  722.         33  Internal game error: preparseCmd command too long
  723.         34  Internal gmae error: preparseCmd loop
  724.  
  725.     The sample implementation of preparseCmd() below simply lists all
  726.     of the words in the current command and displays a newline, then
  727.     allows the command to proceed as usual.
  728.  
  729.         #pragma C+
  730.         preparseCmd: function(cmd)
  731.     {
  732.         local i, tot;
  733.     
  734.         for (i = 1, tot = length(cmd) ; i <= tot ; ++i)
  735.             "<<cmd[i]>> ";
  736.         "\n";
  737.         
  738.             return true;
  739.     }
  740.  
  741.     Note that the parser performs conversions of the special words.
  742.     These conversions will show up in the list as follows:
  743.  
  744.         "and"   becomes  ","
  745.         "all"   becomes  "A"
  746.         "but"   becomes  "X"
  747.         "it"    becomes  "I"
  748.         "them"  becomes  "T"
  749.         "him"   becomes  "M"
  750.         "her"   becomes  "R"
  751.         "any"   becomes  "Y"
  752.  
  753.     Here are some examples using the preparseCmd() function above.
  754.     (The actual response of the commands has been removed -- only the
  755.     text displayed by preparseCmd() is shown.)
  756.  
  757.         >look at all
  758.         look at A
  759.  
  760.         >examine him; take everything except the box and the book and go north
  761.         examine M
  762.         take A X the box , the book
  763.         go north
  764.  
  765.     preparseCmd() is called even for commands that the parser doesn't
  766.     understand.  This allows you to rewrite commands that TADS wouldn't
  767.     normally understand and put them into a format that's acceptable to
  768.     the parser.  For example, the preparseCmd() example below will
  769.     take sentences of the form "tell <actor> to <command>", and convert
  770.     them to the normal TADS syntax, "<actor>, <command>".
  771.         
  772.         #pragma C+
  773.         preparseCmd: function(cmd)
  774.     {
  775.         local i, tot, to_loc, actor, the_rest;
  776.  
  777.             tot = length(cmd);
  778.  
  779.         /* check to see if it starts with "tell" */
  780.         if (tot > 3 && cmd[1] == 'tell')
  781.         {
  782.             /* see if there's a word "to" */
  783.         for (i = 1, tot = length(cmd) ; i <= tot ; ++i)
  784.         {
  785.             if (cmd[i] == 'to')
  786.                 to_loc = i;
  787.         }
  788.  
  789.         /* if there's a "to", convert the command */
  790.         if (to_loc != nil && to_loc > 2)
  791.         {
  792.             /* find the parts before and after the 'to' */
  793.             for (i = 2, actor = [] ; i < to_loc ; ++i)
  794.                 actor += cmd[i];
  795.             for (the_rest = [], i = to_loc + 1 ; i <= tot ; ++i)
  796.                 the_rest += cmd[i];
  797.  
  798.             /* convert it to "actor, command" */
  799.             return actor + ',' + the_rest;
  800.         }
  801.         }
  802.  
  803.             /* otherwise, process the command as normal */
  804.             return true;
  805.         }
  806.  
  807.     When the parser doesn't know how to handle a sentence, it calls
  808.     preparseCmd with the entire rest of the command (which will include
  809.     everything before the next THEN or period), and processing is the
  810.     same as in any other case.  If preparseCmd() returns nil in this
  811.     case, the command is cancelled as usual without any further
  812.     processing by the parser.  If preparseCmd() returns true when the
  813.     sentence is not recognized by TADS, the parser will display the
  814.     usual message (parseError code 18, "I don't understand that
  815.     sentence").  If preparseCmd() returns a list of strings, the
  816.     command is replaced with the list, and the parser starts over
  817.     processing the new command.
  818.  
  819.   - Several new parseError codes have been added.
  820.  
  821.     In order to produce better messages when actors are involved,
  822.     the system now attempts to figure out whether an object in a
  823.     command refers to an actor, and if so, to determine whether the
  824.     actor should be called "him" or "her".  Previously, this
  825.     one-size-fits-all message was generated:
  826.  
  827.        What do you want to <verb> it <prep>?
  828.  
  829.     for example:
  830.  
  831.        >hit bill
  832.        What do you want to hit it with?
  833.  
  834.     Although it's not always possible to determine which object
  835.     should be used in these cases (because disambiguation will not
  836.     be possible until the indirect object is known), the system will
  837.     make its best guess.  To do so, it looks at all of the objects
  838.     that might be involved, based on the vocabulary.  If the player
  839.     appears to mean multiple objects, " them " will be used -- this
  840.     is message number 144 for parseError:
  841.  
  842.        >throw ball and bat
  843.        What do you want to throw them at?        <- message 144
  844.                                 ------
  845.  
  846.     If only one object appears to be intended, the parser will try
  847.     to figure out whether the object is male, female, or neuter,
  848.     using the isHim and isHer properties (these properties are not
  849.     new; they have been around since before TADS 2.0).  If all of
  850.     the objects that match a single noun phrase have isHim and
  851.     not isHer, " him " will be used -- this is parseError message
  852.     number 145:
  853.  
  854.       >hit bill
  855.       What do you want to hit him with?          <- message 145
  856.                              -----
  857.  
  858.     If they all have isHer and not isHim, " her " will be used
  859.     (message number 146):
  860.  
  861.       >hit jill
  862.       What do you want to hit her with?          <- message 146
  863.                              -----
  864.  
  865.     If both are set, the system equivocates with " them ", message
  866.     number 147 (note that this is the same default text as message
  867.     144, but it's distinguished as a separate message number in
  868.     case a game author wants a more suitable word in this case,
  869.     especially in a non-English language):
  870.  
  871.       >hit hermaphrodite
  872.       What do you want to hit them with?         <- message 147
  873.                              ------
  874.  
  875.     If not all of the objects involved have isHim and/or isHer
  876.     set, the system uses "it" (message 141) as in previous versions.
  877.  
  878.     Another change to the processing for this message involves
  879.     actors.  If an actor is specified in the command, the system
  880.     now builds a replacement for message 140.  First, message
  881.     148 is displayed, which has the default text "What do you want ".
  882.     Then, the actor's thedesc is invoked to display the actor's
  883.     name.  Finally, message 149 (default text " to ") is displayed,
  884.     and the rest of the message is built as before.
  885.  
  886.       >guard, throw ball
  887.       What do you want the guard to throw it at?
  888.       -----------------         ----
  889.          message 148             149
  890.  
  891.   - The functionality of the parseAskobj function has been extended
  892.     so that you can generate the same sort of message that the parser
  893.     now generates when a missing object is needed for a command directed
  894.     to an actor.  To provide the new functionality, the parser now calls
  895.     a function called parseAskobjActor.  This function is exactly the
  896.     same as parseAskobj, except that it takes the actor as the first
  897.     parameter, the verb as the second parameter, and the preposition
  898.     as an optional third parameter (which is only present when asking
  899.     for an indirect object).
  900.  
  901.     If your game defines parseAskobjActor, the system ignores parseAskobj
  902.     and calls the new function instead.  If parseAskobjActor is not defined,
  903.     but parseAskobj is defined, the system calls parseAskobj as it did in
  904.     past versions.  If neither function is defined, the system generates
  905.     the message itself as described above.  You should use parseAskobjActor
  906.     rather than parseAskobj for new games, since it gives you more
  907.     information.
  908.  
  909.     Here's an example of parseAskobjActor, which generates roughly the
  910.     same message as the system would (but it doesn't do any of the checking
  911.     of isHim and isHer to determine which pronoun to use -- this function
  912.     simply uses "it").
  913.  
  914.     parseAskobjActor: function(a, v, ...)
  915.     {
  916.         if (argcount == 3)
  917.         {
  918.             "What do you want ";
  919.                 if (a <> Me) a.thedesc;
  920.         " to <<v.sdesc>> it <<getarg(3).sdesc>>?";
  921.         }
  922.         else
  923.         {
  924.         "What do you want ";
  925.             if (a <> Me) a.thedesc;
  926.         " to <<v.sdesc>>?";
  927.         }
  928.     }
  929.  
  930.   - The parser has been changed slightly to allow a command to specify
  931.     an actor in any command within a single line containing multiple
  932.     commands.  Previously, if an actor was to be specified, the actor
  933.     had to be specified at the very beginning of the command.  This
  934.     restriction has been removed, which allows commands like this:
  935.  
  936.       >joe, north.  bob, south.  bill, east, take book, west.
  937.  
  938.     Note that, as in past versions, once an actor is specified, the
  939.     actor remains in effect for subsequent commands.  Since you could
  940.     only specify one actor for an entire command line in past versions,
  941.     this meant that the actor was used for every command on the line;
  942.     with this new version, an actor remains in effect until another
  943.     actor is specified.  So, in the command above, "north" is directed
  944.     to Joe, "south" is directed to Bob, and "east, take book, west"
  945.     is directed to Bill.
  946.  
  947.   - The maximum number of notifiers has been increased to 200.  The
  948.     maximum number of daemons and fuses has been increased to 100 each.
  949.  
  950.   - The maximum number of ambiguous words matching a particular
  951.     vocabulary word has been increased to 200.  This should relieve
  952.     problems that some people have reported with the error message
  953.     "The word 'foo' refers to too many objects".
  954.  
  955.   - The compiler now supports most of the remaining C operators:
  956.  
  957.         a % b      - returns the remainder of dividing a by b
  958.         a %= b     - sets a to a % b
  959.         a != b     - equivalent to a <> b
  960.         !a         - equivalent to (not a)
  961.         a & b      - bitwise AND
  962.         a &= b     - sets a to the bitwise AND of a and b
  963.         a | b      - bitwise OR
  964.         a |= b     - sets a to the bitwise OR of a and b
  965.         a && b     - equivalent to (a and b)
  966.         a || b     - equivalent to (a or b)
  967.         a ^ b      - bitwise XOR of a and b
  968.         a ^= b     - sets a to the bitwise XOR of a and b
  969.         ~a         - bitwise negation of a
  970.         a << b     - a shifted left by b bits
  971.         a <<= b    - shifts a left by b bits
  972.         a >> b     - a shifted right by b bits
  973.         a >>= b    - shifts a right by b bits
  974.  
  975.     Note a slight complication involving the >> operator:  you can't
  976.     use this operator from within an embedded string expression, because
  977.     it would be confused by the parser for the end of the expression.
  978.     It doesn't help to use parentheses, since the embedded string
  979.     processing is essentially a textual substitution mechanism which
  980.     happens without knowledge of the expression context (and is thus
  981.     unaware of parenthesization).  For example, this would be illegal:
  982.  
  983.        myprop = "x divided by 128 is << (x >> 7) >>!"     // wrong
  984.  
  985.     You would have to code this instead as:
  986.  
  987.        myprop = { "x divided by 128 is "; x >> 7; "!"; }  // right
  988.  
  989.     Another slight complication arises from the use of the & operator
  990.     in lists.  Since TADS allows list elements to appear without any
  991.     separating punctuation (except whitespace), you can have a list
  992.     that looks like this:
  993.  
  994.        mylist = [&sdesc &adesc &thedesc]
  995.  
  996.     This construct is still legal, and is still interpreted with the
  997.     "&" operators as unary operators, not bitwise AND operators.
  998.     However, the parser now warns when such a definition is used; see
  999.     the description of the new warning TADS-357 below for details.
  1000.  
  1001.   - The compiler will generate a new warning when it detects a unary
  1002.     operator within a list that could also be interpreted as a binary
  1003.     operator.  For example, in this list,
  1004.  
  1005.        list2 = [5 -2 -6 -7]
  1006.  
  1007.     the "-" operators could be interpreted either as unary negation
  1008.     operators, which would result in a list with four elements (the
  1009.     numbers 5, -2, -6, and -7), or as binary subtraction operators,
  1010.     which would result in a list with only one element (the number
  1011.     -10).  This same problem arises with the operators "+" and "&",
  1012.     since these also have a unary and binary interpretation which
  1013.     depends on context.
  1014.  
  1015.     In these cases, the compiler interprets the operators as unary
  1016.     operators, and issues a warning to let you know that the usage
  1017.     was ambiguous.  The warning is TADS-357:
  1018.  
  1019.       TADS-357: warning: operator '-' intepreted as unary in list
  1020.  
  1021.     Note that this is a change from the previous version for the '+'
  1022.     and '-' operators.  If your game depends on building lists from
  1023.     calculated numeric constants, you will need to change your code;
  1024.     we don't expect that any games actually depend on the old behavior.
  1025.  
  1026.     If you really do want the operators in these cases interpreted
  1027.     as binary operators, use parentheses:
  1028.  
  1029.        list2 = [(5 -2 -6 -7)]
  1030.  
  1031.     The parentheses tell the compiler that the expression is to be
  1032.     interpreted as a single list element.
  1033.  
  1034.     If you want the unary interpretation, and you want to suppress
  1035.     the warning, use commas between the list elements:
  1036.  
  1037.        list2 = [5, -2, -6, -7]
  1038.  
  1039.     This doesn't change the interpretation, but it does suppress the
  1040.     warning, because it removes the ambiguity:  when the commas are
  1041.     present, there is no way the '-' operators could be interpreted
  1042.     as binary operators.
  1043.  
  1044.     You can suppress the TADS-357 warning if you wish using a new -v
  1045.     suboption.  Specify -v-abin in your compiler options to turn off
  1046.     the warning ("abin" is short for "ambiguous binary operator", which
  1047.     is the meaning of the warning).  You may want to suppress this
  1048.     warning when compiling code written prior to this version of TADS,
  1049.     since the warning is generated in case you wanted the new meaning
  1050.     of the & operator.
  1051.  
  1052.   - A new compiler command-line option has been added:  -C, a toggle
  1053.     option, which turns on and off C-language operator compilation.
  1054.     By default, C operator mode is off (-C-), which makes the compiler
  1055.     use the normal TADS operators.  Specifying -C+ turns on C operator
  1056.     mode; specifying -C- disables C operator mode.
  1057.  
  1058.     When C-language operator mode is in effect, two operators are
  1059.     affected:  the assignment operator becomes '=', and the equality
  1060.     comparison operator becomes '=='.  With normal TADS operator mode
  1061.     in effect, assignment is ':=' and equality is '='.  If you are
  1062.     a C programmer, and you're unhappy with the slight variation in
  1063.     operator notation between TADS and C, you can use -C+ to make TADS
  1064.     behave more like a real language.  Thanks to the #pragma C options
  1065.     (see below), C operator mode has no effect on your choice of
  1066.     header files -- you can use the same old adv.t and other header
  1067.     files unchanged, and still use C-style operators in your code.
  1068.  
  1069.   - A new preprocessor command has been added:  #pragma.  This special
  1070.     directive can be used to specify certain compiler options from
  1071.     within your source code.  Currently, the only #pragma option available
  1072.     is the C operator mode option.  Use #pragma C+ to turn on C operator
  1073.     mode, and #pragma C- to turn it off.
  1074.  
  1075.     The #pragma C+ and #pragma C- settings are local to a particular
  1076.     file.  If a file is included by another file, the #pragma C settings
  1077.     specified in the included file will be in effect only until the end
  1078.     of the included file; the including file's #pragma C settings that
  1079.     were in effect before including the other file will be restored at
  1080.     the end of the included file.  adv.t and std.t now start with a
  1081.     #pragma C- command -- this allows adv.t and std.t to be included
  1082.     from a file with C-style operators (and thus a #pragma C+ or
  1083.     command-line C operator mode setting).  Since the enclosing file's
  1084.     #pragma C option will be restored after the inclusion, files with
  1085.     different operator modes can be freely intermixed with #include, as
  1086.     long as each included file specifies its desired mode with a
  1087.     #pragma C directive.
  1088.  
  1089.   - The precedence of the comparison operators has been changed to
  1090.     be the same as that used by C.  Previously, all of the comparison
  1091.     operators were at the same precedence; starting with this version,
  1092.     == and <> (and thus !=) are at the same level of precedence, and
  1093.     associate left to right as before, but <, >, <=, and >= are one
  1094.     level higher in precedence.  The following type of expression will
  1095.     be affected:
  1096.  
  1097.           a > 1 <> b > 1
  1098.  
  1099.     Previously, this grouped as:
  1100.  
  1101.           (((a > 1) <> b) > 1   // obsolete
  1102.  
  1103.     This now groups as:
  1104.  
  1105.           (a > 1) <> (b > 1)    // current behavior
  1106.  
  1107.     This shouldn't affect any existing code, since the old interpretation
  1108.     should always have resulted in an error (because a truth value, true
  1109.     or nil, can not be compared in magnitude to a number or other type).
  1110.  
  1111.   - Limited conditional compilation and preprocessor text substitution
  1112.     (#define) support has been added to the compiler.  The following
  1113.     preprocessor directives are now available:
  1114.  
  1115.       #define symbol value
  1116.       #undef symbol
  1117.       #ifdef symbol
  1118.       #ifndef symbol
  1119.       #else
  1120.       #endif
  1121.  
  1122.     #define is used to assign a value to a preprocessor symbol.  The
  1123.     "value" is simply text that will be substituted verbatim for the
  1124.     symbol whenever it occurs in your file (other than within quoted
  1125.     strings).  For example:
  1126.  
  1127.       #define TEST say('hello from TEST!')
  1128.  
  1129.       myfunc: function
  1130.       {
  1131.          TEST;
  1132.       }
  1133.  
  1134.     The symbol TEST is replaced with its definition, so the function
  1135.     myfunc() displays "hello from TEST!" when called.
  1136.  
  1137.     Preprocessor symbols defined with #define are in a separate
  1138.     namespace from all other symbols in your program.  Unlike a
  1139.     standard C preprocessor, no arguments are allowed in #define
  1140.     macros.
  1141.  
  1142.     #undef deletes a previously #define'd symbol.  You can #undef
  1143.     the special symbols defined automatically by the compiler if
  1144.     you wish (see below).
  1145.  
  1146.     #ifdef tests to see if a preprocessor symbol is defined.  If it
  1147.     is, the lines following the #ifdef line, and up to the corresponding
  1148.     #else or #endif, are included; otherwise, they are ignored.
  1149.  
  1150.     #ifndef is the opposite of #ifdef:  #ifndef tests to see if the
  1151.     symbol is NOT defined.  If the symbol is undefined, the lines
  1152.     following the #ifndef line up to the corresponding #else or
  1153.     #endif are included; otherwise, they are ignored.
  1154.  
  1155.     #else indicates that the lines between the #else and #endif are
  1156.     to be included if an only if the corresponding #ifdef (or #ifndef)
  1157.     failed.  #else is optional.  At most one #else is allowed per
  1158.     conditional.
  1159.  
  1160.     #endif terminates a conditional block.  Exactly one #endif must appear
  1161.     for each conditional (#ifdef or #ifndef).
  1162.  
  1163.     You can use #ifdef to compile certain parts of your code
  1164.     conditionally.  For example, if you want to include a verb only
  1165.     for your debugging version of a game, but you want to remove it
  1166.     from the final version, you could do something like this:
  1167.  
  1168.       #ifdef __DEBUG
  1169.       magicVerb:  deepverb
  1170.          verb = 'xyzzy'
  1171.          action(actor) =
  1172.          {
  1173.          }
  1174.       ;
  1175.       #endif
  1176.  
  1177.     Note that __DEBUG is especially handy for this sort of thing,
  1178.     because the compiler automatically defines this symbol when
  1179.     debugging (-ds) is turned no (see below).
  1180.  
  1181.   - The compiler automatically defines several preprocessor symbols.
  1182.     These symbols can be used or tested within your code as needed.
  1183.  
  1184.     __TADS_VERSION_MAJOR is defined to a number indicating the major
  1185.     version number of the compiler (in the present system, 2).
  1186.  
  1187.     __TADS_VERSION_MINOR is defined to a number indicating the minor
  1188.     version number (in the present system, 2).
  1189.  
  1190.     __TADS_SYSTEM is defined to a string (single-quoted) identifying
  1191.     the operating system the compiler is running on.  In addition, the
  1192.     same identifier contained in the string is defined as a preprocessor
  1193.     symbol itself (its value is always 1; it is intended that it will
  1194.     be tested with #ifdef, and not otherwise used).  For example, if
  1195.     __TADS_SYSTEM is 'MSDOS', the symbol MSDOS will be defined to 1.
  1196.     If __TADS_SYSTEM is 'Macintosh', the symbol Macintosh will be
  1197.     defined to 1.
  1198.  
  1199.     __DEBUG is defined to 1 if debugging is turned on for this
  1200.     compilation (with the -ds compiler option).  Otherwise, this symbol
  1201.     is not automatically defined.  You can test the existence of __DEBUG
  1202.     with #ifdef to conditionally include code only when you are compiling
  1203.     for debugging.  This might be useful if you want to include certain
  1204.     commands only in the debugging version of your game, and want to
  1205.     remove them when you actually deliver the game to players.
  1206.  
  1207.     If this set of symbols were entered manually with #define statements,
  1208.     the definitions might look like this:
  1209.  
  1210.       #define __TADS_VERSION_MAJOR  2
  1211.       #define __TADS_VERSION_MINOR  2
  1212.       #define __TADS_SYSTEM         'MSDOS'
  1213.       #define MSDOS
  1214.  
  1215.     __DATE__ is defined as a single-quoted string giving the system date
  1216.     when the compilation began, in the format "Jan 01 1980".
  1217.  
  1218.     __TIME__ is defined as a single-quoted string giving the system time
  1219.     when the compilation began, in a 24-hour format, "13:40:50".
  1220.  
  1221.     __FILE__ is defined as a single-quoted string giving the file being
  1222.     scanned at the point where the __FILE__ macro is encountered.  Each
  1223.     time you use __FILE__, it will have the correct value for that point
  1224.     in your source code.
  1225.  
  1226.     __LINE__ is defined as a number giving the line number at the point
  1227.     where the __LINE__ macro is encountered.  Each time you use __LINE__,
  1228.     it will have the correct value for that point in your source code.
  1229.  
  1230.   - The compiler has two new options that give you further control
  1231.     over preprocessor symbols.  The -D option allows you to define
  1232.     a preprocessor symbol from the command line.  For example, to
  1233.     define TEST to 5 from the command line, you could do this:
  1234.  
  1235.       tc -i/tads/include -DTEST=5 mygame.t
  1236.  
  1237.     Note that if you omit the equals sign, the default definition
  1238.     of the symbol will be 1:
  1239.  
  1240.       tc -i/tads/include -DTEST mygame.t
  1241.  
  1242.     This defines TEST to 1.
  1243.  
  1244.     The -U option undefines a predefined symbol.  You can use this to
  1245.     undefine one of the symbols automatically defined by the compiler.
  1246.     You can also use it to undefine a symbol defined in a precompiled
  1247.     header, if you're loading one; -U is applied after the precompiled
  1248.     header is loaded, so it will undefine symbols loaded from the file.
  1249.     For example, to compile for debugging, but leave __DEBUG undefined,
  1250.     you could do this:
  1251.  
  1252.       tc -ds -U__DEBUG mygame.t
  1253.  
  1254.     The -U option is applied after all -D options, so you can also use
  1255.     it to undefine a symbol placed earlier on the command line.  This
  1256.     may be useful if you are using a configuation file (CONFIG.TC)
  1257.     that contains -D options for symbols you sometimes want to undefine.
  1258.  
  1259.   - The compiler has a new preprocessor directive, #error, which allows
  1260.     you to generate your own error during compilation.  If a #error
  1261.     directive is encountered, any text after the #error is displayed
  1262.     as a compiler error; an occurrence of #error is counted as an actual
  1263.     compilation error, so compilation will fail if #error is encountered.
  1264.     For example:
  1265.  
  1266.        #ifndef TEST
  1267.        # error TEST is not defined!
  1268.        #endif
  1269.  
  1270.     If the preprocessor symbol TEST is not defined at the point when
  1271.     this sequence is encountered, the compiler will display an error:
  1272.  
  1273.       mygame.t(181): error TADS-124: TEST is not defined!
  1274.  
  1275.   - The runtime has a new debugging feature that may help you track
  1276.     down problems with word definitions.  You can make the player
  1277.     command parser generate a number of status messages as it analyzes
  1278.     a player's command; these messages provide information on how the
  1279.     parser is interpreting the words in the command.
  1280.  
  1281.     To activate this new debug mode, use the debugTrace function with
  1282.     these arguments:
  1283.  
  1284.        debugTrace(1, true);
  1285.  
  1286.     To turn the debug mode off, call with nil instead of true.  This
  1287.     debugTrace function is always available, even when running under
  1288.     the normal runtime; the function returns no value when called with
  1289.     these arguments.
  1290.  
  1291.   - The built-in function incturn() has been extended to allow you
  1292.     to run a series of turns all at once.  You can now specify a numeric
  1293.     argument to incturn(); the argument gives the number of turns that
  1294.     should pass.  An argument of 1 causes incturn() to behave as usual.
  1295.  
  1296.     When an argument higher than 1 is given to incturn(), the function
  1297.     runs all of the fuses that are set to burn down within the number
  1298.     of turns specified, but not after that number of turns.  Note that
  1299.     the normal incturn() has never actually executed any fuses, but
  1300.     simply burns down all fuses by one more turn.
  1301.  
  1302.     For example, if you call incturn(2), the system will first run
  1303.     any fuses that are set to burn down after 1 turn, then will shorten
  1304.     all remaining fuses by one more turn.
  1305.  
  1306.   - A new built-in function, skipturn(), has been added.  This new
  1307.     function takes a numeric argument specifying the number of turns
  1308.     to skip; it must be at least 1.  skipturn(n) is similar to incturn(n),
  1309.     except that it does not run any of the fuses that burn down during
  1310.     the 'n' turns -- instead, it simply removes them without running
  1311.     them.
  1312.  
  1313.   - A new built-in function allows you to force capitalization off --
  1314.     this function, nocaps(), is the opposite of caps().  If you call
  1315.     caps() then call nocaps(), the next character is lower-case; if
  1316.     you call nocaps() then caps(), the next character is capitalized.
  1317.  
  1318.     Along with nocaps(), the special sequence \v has been added.  Using
  1319.     this sequence in a displayed string is equivalent to calling
  1320.     nocaps(); this sequence is analogous to \^, which is equivalent
  1321.     to calling caps().
  1322.  
  1323.   - A new built-in function has been added to clear the screen:
  1324.     clearscreen(), which takes no arguments and has no return value,
  1325.     simply clears the screen.  This routine may do nothing on some
  1326.     platforms; for example, in -plain mode on DOS, clearscreen() has
  1327.     no effect.
  1328.  
  1329.   - The parser is now capable of disambiguating direct objects before
  1330.     indirect objects.  By default, everything works as it always has --
  1331.     in a two-object command, the indirect object is disambiguated first,
  1332.     and then the direct object is disambiguated in the presence of the
  1333.     known indirect object.
  1334.  
  1335.     It is now possible, however, to specify that the reverse should be
  1336.     done.  To do this, you use a new special flags syntax when defining
  1337.     your verb:
  1338.  
  1339.        tellVerb: deepverb
  1340.           verb = 'tell'
  1341.           desc = "tell"
  1342.           ioAction(aboutPrep) = [disambigDobjFirst] 'TellAbout'
  1343.        ;
  1344.  
  1345.     The new special flags are placed in square brackets between the
  1346.     equals sign and the property template for the verb definition.
  1347.     The flags currently accepted are:
  1348.  
  1349.        disambigDobjFirst
  1350.        disambigIobjFirst
  1351.  
  1352.     Note that disambigIobjFirst is provided for completeness only; it
  1353.     is never needed, because it is the default setting.
  1354.  
  1355.     When the disambigDobjFirst flag is specified, it means that the
  1356.     command should have its direct object disambiguated before its
  1357.     indirect object.
  1358.  
  1359.     When the disambiguation order is reversed, the normal argument
  1360.     lists for verDoTellAbout and verIoTellAbout are interchanged.
  1361.     For our example, the prototypes for the verifier methods become:
  1362.  
  1363.        verDoTellAbout(actor)
  1364.        verIoTellAbout(actor, dobj)
  1365.  
  1366.     Normally, verIoVerb would not receive the direct object as an
  1367.     argument, because the direct object would not be known at the time
  1368.     of the verIoVerb call; and verDoVerb would receive the indirect
  1369.     object as an argument, because it would be known by the time the
  1370.     direct object was being tested.  When the disambiguation order is
  1371.     reversed, however, so are the prototypes to these functions.
  1372.  
  1373.     The actual action method, ioTellAbout(actor, dobj), remains
  1374.     unchanged.  All other methods also remain the same.
  1375.  
  1376.     When the direct object is disambiguated first, the player is not
  1377.     allowed to use multiple direct objects (or multiple indirect objects)
  1378.     in the command.  If the player tries to do so, the new parseError
  1379.     message number 28 is displayed:
  1380.  
  1381.        >tell bob and bill about gun
  1382.        You can't use multiple objects with this command.
  1383.  
  1384.   - Note that a .GAM file format change was required to support the
  1385.     extra information needed for the disambigDobjFirst flag.  The TADS
  1386.     file format is now format "C".  The compiler is still capable of
  1387.     producing formats A or B, in case you need to generate .GAM files
  1388.     that can be played with versions prior to 2.2; however, if you
  1389.     use a format prior to C, you will not be allowed to use the
  1390.     disambigDobjFirst flag (or any other similar flags that may be
  1391.     added in the future).
  1392.  
  1393.   - Two new methods have been added to disambiguate actors.  Previously,
  1394.     the system validated and disambiguated an actor by pretending that
  1395.     you were attempting to take the actor -- takeVerb.validDo and the
  1396.     actor's verDoTake were used to validate and disambiguate the actor,
  1397.     when all you wanted to do was speak to him.  This did not always
  1398.     produce satisfactory results, and in particular did not allow for
  1399.     such situations as talking over a radio to an actor in another room.
  1400.     To provide better control over actor validation and disambiguation,
  1401.     the system for testing actors has been enhanced.
  1402.  
  1403.     First, to validate an actor, the system now uses the method
  1404.     validActor in the actor object itself.  This method takes no
  1405.     arguments; it returns true if the object is valid as an actor in
  1406.     a command, nil otherwise.  This method is called before the verb
  1407.     or any of the objects involved in the sentence are known.  Its
  1408.     function is not to determine whether the actor wants to receive
  1409.     the command, or even if the object can be used as an actor
  1410.     (actorAction is the place to do both of these tests), but rather
  1411.     simply to determine if the object can be addressed by the player
  1412.     at all.  This method should return true if the actor is accessible
  1413.     by voice command (or whatever other means you want to provide for
  1414.     giving commands) to the player.  The default thing.validActor in
  1415.     adv.t returns true if the object is reachable by Me, which provides
  1416.     roughly the same behavior as the old takeVerb-based mechanism.
  1417.  
  1418.     Second, to disambiguate an actor, the new preferredActor method
  1419.     has been added.  This method is called if an actor is ambiguous.
  1420.     As with validActor, it doesn't take any arguments, and it returns
  1421.     true if the object is "preferred" as an actor, nil otherwise.  If
  1422.     exactly one ambiguous object's preferredActor method returns true,
  1423.     the parser will use that object as the actor without further
  1424.     questioning the player; otherwise, the system will ask the player
  1425.     to disambiguate the noun as normal.  In adv.t, movableActor defines
  1426.     preferredActor = true.
  1427.  
  1428.     An example of how these might be used:
  1429.  
  1430.        Sleeping Compartment
  1431.           You are in a sleeping compartment on a moving train.
  1432.        A pair of bunks is along each wall.
  1433.           There is a copper wire here.
  1434.           The train conductor is standing in the doorway, asking for
  1435.        your ticket.
  1436.  
  1437.        >look at conductor
  1438.        Which conductor do you mean, the copper wire, or the train
  1439.        conductor?
  1440.  
  1441.        >copper
  1442.        It's a piece of wire, about a foot long.
  1443.  
  1444.        >conductor, where is ivan?
  1445.        "Your ticket, please," is all the conductor has to say.
  1446.  
  1447.     In this sequence, when the command is addressed to "conductor", the
  1448.     parser matches both the copper wire and the train conductor.  It
  1449.     checks validActor in each of them -- both return true, since both
  1450.     are accessible to the player.  (As described above, even though the
  1451.     copper wire couldn't possibly be an actor, it is valid as an actor
  1452.     at this point -- it's not until its actorAction that we will decide
  1453.     that there's no point in talking to it.)
  1454.  
  1455.     So, the parser has an ambiguous actor.  The parser tries to
  1456.     disambiguate the actor by testing preferredActor in each object.
  1457.     The copper wire's preferredActor returns nil; the train conductor's,
  1458.     however, returns true, because the conductor is a movableActor
  1459.     object.  The parser now has only one object, and thus doesn't
  1460.     need to ask the player for further information.
  1461.  
  1462.     For compatibility with games compiled with previous versions of
  1463.     adv.t, the parser will continue to use the old mechanism (involving
  1464.     the takeVerb) if validActor is not defined in your game.  Each time
  1465.     an actor is used, the parser checks to see if the first object in
  1466.     the list of possible actor objects has a validActor method defined;
  1467.     if not, the parser uses the old mechanism.  If you use the new adv.t,
  1468.     all objects will at least inherit a validActor method (from thing),
  1469.     so testing for the presence of this method in any object lets the
  1470.     parser determine if the new mechanism can be used with the game.
  1471.  
  1472.   - A new parseError message has been added:  number 27, whose default
  1473.     text is "You can't repeat that command."  This message is displayed
  1474.     when the player types AGAIN, but the parser can't repeat the command;
  1475.     this is the case if one of the objects involved in the command is
  1476.     no longer accessible.
  1477.  
  1478.   - A new parseError message has been added, related to validActor
  1479.     (see above).  This new message, number 31, is used when none of
  1480.     the objects matching the vocabulary for an actor in a player's
  1481.     command can be used as an actor.  The default text of this message
  1482.     is "You can't talk to that."  For example, if there is no object
  1483.     matching the vocabulary "guard" whose validActor method returns
  1484.     true, but an object named "guard" is visible to the player, the
  1485.     message is used:
  1486.  
  1487.       Security Room
  1488.           You are inside a small cubicle.  A thick, laser-proof
  1489.       (as you now know from your ill-fated attempt) glass door
  1490.       (closed) is to the north.  Through the door you can see
  1491.       a guard standing watch.
  1492.  
  1493.       >guard, open door
  1494.       You can't talk to that.
  1495.  
  1496.     This message is used for actors in place of the standard cantReach
  1497.     processing done for direct and indirect objects under these conditions.
  1498.  
  1499.   - A new parseError code, number 29, has been added.  The default
  1500.     message is "I think you left something out after 'any of'", and
  1501.     is used when the player uses "any of" in a sentence, but doesn't
  1502.     follow it with anything.
  1503.  
  1504.   - Using the same word as both a plural and a noun works much better
  1505.     now.  The parser will first attempt to use such a word as a plural;
  1506.     if no objects match the plural usage, the parser will try to use
  1507.     the word as a noun instead.
  1508.  
  1509.   - "of" can now be used as a preposition.  In previous versions of
  1510.     the run-time, "of" was exclusively a special word that was embedded
  1511.     in noun phrases (such as "pile of paper").  The runtime will still
  1512.     allow "of" to be used in noun phrases as before, but it also will
  1513.     treat "of" as an ordinary word when, based on the context, it does
  1514.     not appear to be part of a noun phrase.
  1515.  
  1516.     The parser will still attempt to treat "of" as part of a noun
  1517.     phrase whenever it matches an object.  For example, if you have
  1518.     an object with nouns matching "pile of paper", then the following
  1519.     interpretations will apply:
  1520.  
  1521.         accuse bob of murder   ->  dobj = bob, iobj = murder, prep = of
  1522.         accuse pile of paper   ->  dobj = pile of paper
  1523.  
  1524.     Note that ofPrep, defining "of" as a preposition, has been added
  1525.     to adv.t.
  1526.  
  1527.   - All of the system verbs that use "abort" have been modified
  1528.     slightly in adv.t to make it easier to augment their behavior
  1529.     with the 'modify' statement.  All of the processing other than
  1530.     the "abort" has been moved out of the doVerb (or action) method
  1531.     in each case, and put into a new method.  For example, saveVerb's
  1532.     action routine now looks like this:
  1533.  
  1534.         action( actor ) =
  1535.         {
  1536.         self.saveGame(actor);
  1537.         abort;
  1538.     }
  1539.  
  1540.     The new method saveVerb.saveGame(actor) now performs all of the
  1541.     processing that the action(actor) method previously performed.
  1542.  
  1543.     The benefit of this change is that you can now modify the
  1544.     saveGame(actor) method, and inherit the original behavior,
  1545.     without having to worry about an "abort" interfering with the
  1546.     order of operations.  For example:
  1547.  
  1548.         modify restoreVerb
  1549.             restoreGame(actor) =
  1550.             {
  1551.                 // restore the game as usual - check for success
  1552.                 if (inherited.restoreGame(actor))
  1553.                 {
  1554.                     // re-randomize the puzzle
  1555.             "The carnival hawker flashes a mischevious
  1556.             smile at you.  \"There's no use trying to
  1557.             guess the answer,\" he says.  \"I changed
  1558.             around the shells while you were busy
  1559.             restoring!\"";
  1560.             puzzle.answer := rand(100);
  1561.                 }
  1562.             }
  1563.         ;
  1564.  
  1565.  
  1566.   - The format mask fmtMe has been added.  You can now use %me% in
  1567.     messages to refer to the actor.  For basicMe, fmtMe is set to
  1568.     the message "me"; for other actors, it is set to the actor's
  1569.     thedesc.  In adv.t, thing.ldesc has been changed to use %me%:
  1570.     "It looks like an ordinary <<sdesc>> to %me%."  This makes the
  1571.     default sentence somewhat more adaptable if you ask another
  1572.     actor to describe something:
  1573.  
  1574.         >guard, look at the card
  1575.         It looks like an ordinary card to the guard.
  1576.  
  1577.   - AGAIN, WAIT, and SLEEP are now darkVerb's in adv.t.
  1578.  
  1579.   - A new verb, breakVerb, has been added to adv.t.  The vocabulary
  1580.     words for this verb are 'break', 'destroy', and 'ruin', and it
  1581.     provides a single-object command "break <direct-object>".  The
  1582.     thing class has been adjusted so that verDoBreak(actor) validates
  1583.     breaking any object, but doBreak(actor) simply displays "You'll have
  1584.     to tell me how to do that."  If you want to make a breakable object,
  1585.     simply override doBreak(actor) so that it breaks the object (you may
  1586.     also want to override verDoBreak(actor) so that it doesn't allow a
  1587.     broken object to be broken again).
  1588.  
  1589.   - "there" has been added a synonym for "it" in the specialWords list
  1590.     in adv.t.  This allows sentences like this:
  1591.  
  1592.         >get box.  put ball in there.
  1593.  
  1594.   - lightsource now has a doTurnnon method in adv.t.  This method will
  1595.     show the room's description if the room becomes lit as a result
  1596.     of turning on the lightsource.  Note that lightsource, by default,
  1597.     has no verDoTurnon, so you can't turn a generic light source on
  1598.     and off.  However, if you add switchItem to the superclass list of
  1599.     a lightsource object, you will have a light source that you can
  1600.     turn on and off, and which will have this new behavior.  Note that
  1601.     you should put lightsource in the superclass list prior to
  1602.     switchItem, so that lightsource.doTurnon overrides switchItem.doTurnon:
  1603.  
  1604.         flashlight:  lightsource, switchItem
  1605.             sdesc = "flashlight"
  1606.             noun = 'flashlight' 'light'
  1607.             adjective = 'flash'
  1608.             location = tunnel
  1609.         ;
  1610.  
  1611.   - verIoGiveTo and ioGiveTo have been added to movableActor in adv.t.
  1612.     verIoGiveTo rejects the command if the actor is the same as the
  1613.     indirect object, otherwise the command is accepted.  ioGiveTo
  1614.     always rejects the offer.  In addition, ioGiveTo has been added
  1615.     to basicMe; the method always accepts anything from another actor,
  1616.     because this method will only be called in response to commands
  1617.     such as:
  1618.  
  1619.         >guard, give me the key
  1620.  
  1621.   - A small problem with thing.isVisible in adv.t has been fixed.  If
  1622.     the vantage is inside the object, and the object's contents are
  1623.     visible, isVisible returns true.  This is is needed in certain
  1624.     situations involving nested rooms.
  1625.  
  1626.   - moveableActor.travelTo(room) in adv.t has been corrected so
  1627.     that it does nothing when room = nil, which is the case when the
  1628.     actor can't travel in the desired direction.  Previously, the
  1629.     "noexit" message would be displayed, but then the actor would
  1630.     be moved into a nil location.
  1631.  
  1632.   - moveableActor now has a roomCheck method in adv.t.  The method
  1633.     is the same as basicMe's roomCheck method; its omission in
  1634.     previous versions was an oversight.
  1635.  
  1636.   - The showcontcont function in adv.t has been corrected so that
  1637.     the isqsurface flag is checked correctly.
  1638.  
  1639.   - A new class, seethruItem, has been added to adv.t.  This class is
  1640.     intended for objects such as windows or magnifying glasses which
  1641.     the player can look through.  Each object of this class should
  1642.     define an appropriate thrudesc method, which displays what the
  1643.     player sees when looking through this object.
  1644.  
  1645.     Note that a seethruItem is not the same as a transparentItem.
  1646.     The class transparentItem is intended for objects, such as glass
  1647.     bottles, whose contents are visible, whereas seethruItem is intended
  1648.     for objects that are not containers but which the player can look
  1649.     through.
  1650.  
  1651.   - The compiler now sets an error code on exit.  If you are using
  1652.     a MAKE utility or other program-building tool, you can use the
  1653.     exit code.  On success, the compiler uses exit code 0; if any
  1654.     errors occurred, a non-zero exit code is used.
  1655.  
  1656.   - The compiler no longer creates a .GAM file if errors occurred
  1657.     during compilation.  If a .GAM file of the same name exists
  1658.     prior to a compilation, and errors occur, the original .GAM
  1659.     file is unaffected (it is not deleted or overwritten).  Although
  1660.     the compiler previously produced a .GAM file even when an error
  1661.     occurred, this .GAM file was not generally usable; to avoid
  1662.     confusion, the compiler no longer produces a .GAM file at all
  1663.     when an error occurs.
  1664.  
  1665.   - The compiler performs more checking for invalid -m parameters.
  1666.     When -m parameters are entered that exceed the compiler's internal
  1667.     limits, it will report an error and abort the compilation.  The
  1668.     affected options are -mp, -ml, and -ms.  The runtime similarly
  1669.     checks its parameters more carefully now.
  1670.  
  1671.   - The DOS runtime no longer displays anything on the status line at
  1672.     startup.  It initializes both the left portion (which normally is
  1673.     used to display the location) and the right portion (which is
  1674.     normally used to display the score and turn count) to empty
  1675.     strings.  To ensure that a score is properly displayed at the
  1676.     start of the first turn, we added a call to scoreStatus(0, 0) in
  1677.     the "init" function defined in std.t.
  1678.  
  1679.   - The DOS runtime now has a plain ASCII mode.  In this mode, the
  1680.     runtime uses only DOS character input and output functions,
  1681.     performs no highlighting or cursor positioning, and does not
  1682.     display a status line.  Command editing and screen scrollback
  1683.     are also disabled (although normal DOS keyboard editing can be
  1684.     used, and any loaded command editor, such as DOSKEY, will be
  1685.     active).  This mode is intended for people with a special need
  1686.     to use direct DOS character I/O, such as persons using a voice
  1687.     synthesizer.  To invoke this mode, specify -plain in the runtime
  1688.     command options:
  1689.  
  1690.           tr -plain mygame
  1691.  
  1692.     Note that .EXE files produced by MAKETRX can be used in this
  1693.     manner as well; simply specify -plain with the game program:
  1694.  
  1695.           deep -plain
  1696.  
  1697.   - The DOS runtime now uses the control-left-arrow and
  1698.     control-right-arrow to move the cursor left and right by one
  1699.     word in the command editor.  This behavior is consistent with
  1700.     most other DOS command editors.
  1701.  
  1702.   - $$ABEND can now be used after a question from the parser, such
  1703.     as during disambiguation and when OOPS is permitted.
  1704.  
  1705.   - The runtime handles hyphenation better.  Multiple hyphens will
  1706.     no longer be split across lines -- so if you use two hyphens
  1707.     together for a dash, both hyphens will always be grouped on one
  1708.     line.  Furthermore, the runtime formatter will never put a dash
  1709.     at the very start of a line; if a line must be split at a dash,
  1710.     the formatter will put the dash at the end of the line, then
  1711.     break the line, and will back up and split at the previous word
  1712.     if necessary.
  1713.  
  1714.   - The runtime will now properly convert "\" sequences in askfile()
  1715.     prompts properly.  If you use a \n, \t, \', \", or \\ sequence
  1716.     in a prompt to askfile(), the sequence will be displayed as the
  1717.     appropriate character.  (For the DOS runtime, this only matters
  1718.     in -plain mode, because the DOS file selector in the normal full-
  1719.     screen mode doesn't use the prompt string.)
  1720.  
  1721.   - The DOS runtime's file selector dialog incorrectly interpreted
  1722.     the Alt keys for disks in the last version -- Alt-B selected the A
  1723.     drive, Alt-C selected the B drive, and so forth.  This has been
  1724.     corrected.
  1725.  
  1726.   - The MAKETRX command now takes an additional argument that lets
  1727.     you specify the run-time command options that should be used when
  1728.     the game is executed.  MAKETRX still accepts the original command
  1729.     formats; using one of the old-style command formats will not bind
  1730.     any command options into the resulting .EXE file.
  1731.  
  1732.     To specify command options for your game executable, you must
  1733.     first create a file.  Use the same format as CONFIG.TR -- simply
  1734.     enter your options into the file as you would on the TR command
  1735.     line; separate options by newlines or spaces.  For example, to
  1736.     specify a minimal cache size and a swap file of SWAP.DAT, you
  1737.     could make your CONFIG.TR file look like this:
  1738.  
  1739.         -m0 -tf swap.dat
  1740.  
  1741.     Once you've created a file with your command options, specify
  1742.     that file to MAKETRX by using it as the first parameter on the
  1743.     command line, prefixed with an "at" sign (@):
  1744.  
  1745.         maketrx @config.tr mygame
  1746.  
  1747.     The @config option can be used with any of the original command
  1748.     formats for MAKETRX.  Once the config file is bound into your
  1749.     executable, its options will be used every time a player runs
  1750.     your game's .EXE file.  Note that you may want to avoid specifying
  1751.     anything specific to your system, such as drives or directories,
  1752.     since that may prevent the game from working properly on someone
  1753.     else's system.
  1754.  
  1755.   - The new sentence parsing for the form VERB PREP IOBJ DOBJ
  1756.     (introduced in 2.1.1) causes a subtle problem:  if you create
  1757.     an object with an adjective that is also a preposition, the
  1758.     system attempts to interpret sentences with a single-word verb
  1759.     that refers to the object as VERB PREP IOBJ.  The result is
  1760.     this:
  1761.  
  1762.        >push off button
  1763.        What do you want to push?
  1764.  
  1765.     This is because the parser is interpreting the sentence as
  1766.     "push something off button", and needs to know the "something".
  1767.     This problem has been corrected.  Now, the parser will check this
  1768.     type of case to see if the preposition can also be used as an
  1769.     adjective, and if so, checks to see if a noun (possibly preceded
  1770.     by one or more adjectives) follows; if this test is met, the word
  1771.     will be interpreted as an adjective, as it should be.
  1772.  
  1773.   - The parser now correctly distinguishes between cases involving
  1774.     a word that is defined as both a preposition and an adjective.
  1775.     The parser previously did not accept sentences such as this:
  1776.  
  1777.       >enter south wall
  1778.  
  1779.     when 'south' was defined as an adjective.  Because 'south' was
  1780.     also defined as a preposition (in adv.t), the parser attempted
  1781.     to interpret this sentence as though 'enter south' were a verb
  1782.     (in the same manner as 'pick up' or 'put down').  The parser
  1783.     now checks to make sure that 'enter south' is a valid combination
  1784.     verb; if it's not, and 'south' is also defined as another part of
  1785.     speech, the parser assumes that 'enter' is the verb, and treats
  1786.     'south' as an adjective.
  1787.  
  1788.   - The parser previously asked to disambiguate a direct object twice
  1789.     if askio(prep) was used.  For example:
  1790.  
  1791.        >unlock door
  1792.        Which door do you mean, the large door, or the small door?
  1793.  
  1794.        >large
  1795.        What do you want to unlock it with?
  1796.  
  1797.        >key
  1798.        Which key do you mean, the silver key, or the gold key?
  1799.  
  1800.        >gold
  1801.        Which door do you mean, the large door, or the small door?
  1802.  
  1803.        >large
  1804.        The door unlocks with a satisfying click.
  1805.  
  1806.     This has been corrected -- the parser now only asks once about
  1807.     the door.
  1808.  
  1809.   - The parser did not previously accept a word during disambiguation
  1810.     if the word was defined as both a noun and an adjective.  For
  1811.     example, if you've defined objects "violet paper", "violet banana",
  1812.     and "paper towel", and the parser asked you this:
  1813.  
  1814.        >x violet
  1815.        Which violet do you mean, the violet paper, or the violet banana?
  1816.  
  1817.     then you couldn't respond with "paper".  This has been corrected.
  1818.  
  1819.   - The inputkey() function now clears the "more" line counter.  So,
  1820.     when inputkey() is called, a "more" prompt will not show up until
  1821.     another screenful of text has been displayed.
  1822.  
  1823.   - "local" statements that occur out of context (i.e., as other than
  1824.     the first statements after an open brace) now generate better
  1825.     diagnostics.
  1826.  
  1827.   - Dividing by zero is now flagged as a run-time error.
  1828.  
  1829.   - A problem involving the embedded string << >> notation has been
  1830.     corrected.  Under certain circumstances, if one expression used
  1831.     in an embedded string invoked another string with an embedded
  1832.     expression, an error occurred (usually "invalid type for built-in
  1833.     function").  This should no longer occur.
  1834.  
  1835.   - The system did not properly handle lists containing function
  1836.     pointers.  This has been corrected.
  1837.  
  1838.   - A problem involving pre-compiled headers and 'modify' has been
  1839.     corrected.  Several people have encountered problems that generally
  1840.     were manifested as "assert" failures in mcm.c (the cache manager)
  1841.     when using 'modify' and pre-compiled headers; these should no
  1842.     longer occur.
  1843.  
  1844.   - An internal cache corruption occurred under certain obscure
  1845.     circumstances involving 'modify'.  This has been corrected.
  1846.  
  1847.   - A note on roomCheck:  if you return nil from roomCheck, fuses
  1848.     and daemons are NOT run; in this sense, returning nil from roomCheck
  1849.     is equivalent to using abort in other methods.  (This is not a
  1850.     change -- it's always worked this way -- but this behavior is
  1851.     not mentioned in the TADS Author's Manual.)
  1852.  
  1853.   - A note on using << >> embedded strings:  If you put a newline
  1854.     immediately before the << of an embedded string, any spaces between
  1855.     the last non-space character preceding the << and the << will be
  1856.     lost.  If you want a space before the <<, do not put it on a new
  1857.     line.  Instead, you can put it at the end of the line, and put
  1858.     the embedded expression itself on the next line.  For example:
  1859.  
  1860.         embeddedString = "embedded string"
  1861.         sdesc = "This is a message with an
  1862.                  <<self.embeddedString>>!"     // wrong
  1863.  
  1864.     This will display as follows:
  1865.  
  1866.         This is a message with anembedded string!
  1867.  
  1868.     If you intend a space to precede the embedded string, you should
  1869.     write this as follows:
  1870.  
  1871.         sdesc = "This is a message with an <<
  1872.                 self.embeddedString>>!";      // right
  1873.  
  1874.     (This is not a change, but simply a note for game developers who
  1875.     have encountered this problem.)
  1876.  
  1877.  
  1878. 2.1.2  11/22/93  enhancements, bug fixes
  1879.  
  1880.   - You can now detect when the player uses multiple direct objects
  1881.     with a verb, and reject such commands.  Whenever the player uses
  1882.     multiple direct objects with a command (or uses "all", even if it
  1883.     results in a single object being used), the parser calls the
  1884.     verb object's rejectMultiDobj(prep) method.  If you don't wish to
  1885.     take any special action for multiple direct objects used with a
  1886.     particular verb, simply return nil from this method (or don't
  1887.     define the method at all for the verb).  If you want to prevent
  1888.     multiple direct objects from being used, however, you should display
  1889.     an appropriate message, and return true.  The parser will skip the
  1890.     command entirely.  Note that the parser doesn't display any additional
  1891.     message when rejectMultiDobj(prep) returns true; the method should
  1892.     display whatever message is desired.  The "prep" parameter is the
  1893.     preposition object used with the command; it will be nil if no
  1894.     indirect object is present.  An example:
  1895.  
  1896.         modify inspectVerb
  1897.             rejectMultiDobj(prep) =
  1898.             {
  1899.                 "You can only look at one thing at a time.";
  1900.                 return true;
  1901.             }
  1902.  
  1903.     The verb's rejectMultiDobj(prep) method is called immediately
  1904.     before the actor's actorAction method.  Note that the parser will
  1905.     continue processing any remaining commands on the line, and will
  1906.     then run daemons and fuses as normal, even if rejectMultiDobj(prep)
  1907.     returns true; if you want to stop the current turn altogether, use
  1908.     abort.
  1909.  
  1910.   - The player command parser now gives you greater control over object
  1911.     validation error reporting.  In previous versions, if an object was
  1912.     visible but did not pass the validIo/validDo test, the parser called
  1913.     the object's cantReach method to report the error (see the note below
  1914.     about an additional change to object.cantReach processing).
  1915.  
  1916.     Now, however, the parser will call verb.cantReach instead, if the
  1917.     command's deepverb object defines (or inherits) a cantReach method.
  1918.     If the verb does not have a cantReach method at all, the parser
  1919.     will use the old behavior instead.  The new cantReach method should
  1920.     be defined as follows:
  1921.  
  1922.        myVerb: deepverb
  1923.            verb = 'whatever'
  1924.            cantReach(actor, dolist, iolist, prep) =
  1925.            {
  1926.                // your code here
  1927.            }
  1928.        ;
  1929.  
  1930.     This method doesn't return a value; it simply displays the appropriate
  1931.     message explaining why the object can't be used with the command.
  1932.     verb.cantReach is used only when the objects are visible (that is,
  1933.     object.isVisible(actor) returned true for each object in the list).
  1934.  
  1935.     Only one of dolist or iolist will be non-nil.  If the direct object
  1936.     of the command refers to one or more objects that are visible but
  1937.     can't be used (according to validDo), dolist will be a list of all
  1938.     such objects, and iolist will be nil.  Otherwise, iolist will be a
  1939.     list of such objects used for the indirect object, and dolist will
  1940.     be nil.
  1941.  
  1942.     adv.t has not been changed to use verb.cantReach.  This change has
  1943.     been made to provide finer control for game authors implementing
  1944.     their own verbs and object validation procedures.
  1945.  
  1946.   - The player command parser had an odd quirk when ambiguous nouns
  1947.     were used with transparent items.  If the player used a command
  1948.     containing a noun that referred to multiple objects that were
  1949.     visible but were not valid for the verb (for example:  "take trophy"
  1950.     in a room containing a closed glass trophy case containing a bowling
  1951.     trophy and a tennis trophy), the parser asked the normal disambiguation
  1952.     question.  This was not really necessary, because the parser already
  1953.     knew that the objects were invalid.  This has been changed; the parser
  1954.     now simply uses the cantReach message for *each* object that is
  1955.     visible and matches the vocabulary, using the usual multiple-word
  1956.     format:
  1957.         bowling trophy:  You'll have to open the glass case first.
  1958.         tennis trophy:  You'll have to open the glass case first.
  1959.  
  1960.     This new behavior should have no effect on your game code.  Note
  1961.     that it is entirely irrelevant if you use the new verb.cantReach
  1962.     feature described above.
  1963.  
  1964.   - The compiler sports a new case sensitivity option.  By default,
  1965.     the compiler is case-sensitive, as it has been in past versions.
  1966.     However, the new toggle option allows you to change this.  Specify
  1967.     -case- to turn off case sensitivity (the default is -case+).  Note
  1968.     that this is a toggle option, so simply using -case will reverse
  1969.     the current case sensitivity (which is useful if you use a CONFIG.TC
  1970.     file that sets a non-default case option).  When case sensitivity
  1971.     is turned off, the compiler will treat upper- and lower-case letters
  1972.     in symbols (names of objects, properties, functions, and local
  1973.     variables) as equivalent.  Hence, foodItem = fooditem = FoodItem,
  1974.     and so on.
  1975.  
  1976.     If you create a pre-compiled header with -w, any compilation which
  1977.     reads that binary header with -l will use the same case sensitivity
  1978.     as was in effect when the header was pre-compiled.  The -case option
  1979.     is ignored when a pre-compiled header is loaded.  Likewise, the
  1980.     debugger uses the same case sensitivity that was in effect when the
  1981.     game being debugged was compiled.
  1982.  
  1983.   - The debugger's command set is no longer case-sensitive (hence,
  1984.     BP = Bp = bP = bp).
  1985.  
  1986.   - adv.t has a new darkVerb class.  This is a type of deepVerb that
  1987.     can be used in the dark.  The darkroom class has been changed to
  1988.     accept any verb of class darkVerb in its roomAction and roomCheck
  1989.     methods.  The travel verbs and system verbs have all been made
  1990.     darkVerb objects, so darkroom only needs to check the single
  1991.     verb type.
  1992.  
  1993.     In a related change, turnOnVerb and dropVerb have been changed to
  1994.     be darkVerb objects, allowing the player to turn on an object or
  1995.     drop it in the dark.  The verDoTurnon method in switchItem has
  1996.     been changed so that it checks to see if the player is in a dark
  1997.     room; if so, the item can only be turned on if the player is already
  1998.     carrying the object.  This allows the player to turn on a light
  1999.     source that's already being carried, but doesn't allow the player
  2000.     to pick up a light source in a dark room.
  2001.  
  2002.   - The compiler issues a new warning message (TADS-452) if you
  2003.     use the same verb with two deepverb objects.  The parser can only
  2004.     choose a single deepverb object for any verb typed by the player,
  2005.     so you should never define the same 'verb' vocabulary word in more
  2006.     than one deepverb object.  In past versions, the compiler did not
  2007.     flag this as a warning.
  2008.  
  2009.   - Several improvements have been made for numbers in player
  2010.     commands.  First, multiple numbers are now allowed in a single
  2011.     commands; for example, the player can now say "press 1, 2, 3,
  2012.     4 on keypad," and the numbers are set in numObj.value, one by
  2013.     one.  Second, the sdesc, adesc, and thedesc properties of
  2014.     basicNumObj have been improved to show the number's value.
  2015.  
  2016.   - Similar improvements to those for numbers have been made for
  2017.     strings.  Multiple strings are now allowed in a single command,
  2018.     and the basicStrObj properties sdesc, adesc, and thedesc have
  2019.     been improved to show the string's value.
  2020.  
  2021.   - specialWords has been enhanced.  First, in past versions, if a
  2022.     game contained multiple specialWords statements, the word lists
  2023.     were additive -- all specialWords lists were used in the game.
  2024.     This has been changed so that each specialWords statement replaces
  2025.     any previous list in effect.  However, you now can explicitly add
  2026.     to the specialWords list, without removing any of the previously
  2027.     defined words, by using "modify specialWords".  When you use
  2028.     'modify', you can use nil in any word slot if you do not wish
  2029.     to add any words for that slot.  Finally, you can use "replace
  2030.     specialWords" to make the replacement explicit; this is the default
  2031.     if neither 'modify' nor 'replace' is specified, but the compiler
  2032.     will now issue a warning (which is harmless) if you use specialWords
  2033.     without 'replace' or 'modify' and a previous specialWords list is
  2034.     already in effect.
  2035.  
  2036.   - The words "one" and "ones" (or their equivalent for your game,
  2037.     if you've changed them with specialWords) are no longer considered
  2038.     reserved words within normal commands.  This allows you to use
  2039.     objects such as a "one dollar bill"; previous versions rejected
  2040.     player commands containing "one" or "ones".  These words are now
  2041.     considered special only during the parsing of a response to a
  2042.     disambiguation question, when they can be used in place of a
  2043.     noun ("the red one" can be used in answer to "Which book do you
  2044.     mean...").
  2045.  
  2046.   - The hider class has been changed so that 'it' or 'them' (as
  2047.     appropriate) are set to the object or objects found when
  2048.     searching the hider.
  2049.  
  2050.   - The verDoPutIn and verDoPutOn messages in thing and surface
  2051.     (respectively) have been improved for the somewhat obscure case
  2052.     of attempted circular containment - that is, putting an object
  2053.     into a container, when the container is already in the first object
  2054.     (either directly or by virtue of being inside another object which
  2055.     is inside the first object, or inside an object which is inside an
  2056.     object which is inside the first object, and so on).  The new
  2057.     method thing.circularMessage(iobj) is called in these cases to
  2058.     display an appropriate message; the default implementation of this
  2059.     method displays the complete list of containers of the direct
  2060.     object out to the indirect object.  For example, if you have a
  2061.     crate which contains a box, and you try to "put crate in box",
  2062.     the message is "You can't put the crate in the box, because
  2063.     the box is already in the crate."
  2064.  
  2065.   - The default doTake method has been changed to include the weight
  2066.     of any contents of the item being taken, in addition to the item
  2067.     itself, to determine if the actor's inventory is too heavy.
  2068.     The old doTake method only included the weight of the object
  2069.     being taken, not counting its contents.
  2070.  
  2071.   - The Actor class has been changed to add a travelTo method.  You
  2072.     can now move any actor (Me included) with travelTo(destination).
  2073.     The default Actor.travelTo method moves the actor; it announces
  2074.     the departure of the actor if the actor was in the same location as
  2075.     Me before leaving (and the location is lit); and it announces the
  2076.     arrival of the actor if the actor is moving into the same location
  2077.     as the player (and the location is lit).  The departure message
  2078.     is generated with a call to self.sayLeaving, and the arrival
  2079.     message is generated with self.sayArriving.  The default versions
  2080.     of these methods simply display "Thedesc leaves the area" and
  2081.     "Thedesc enters the area", respectively; you can override these
  2082.     methods if a more specific message is desired.
  2083.  
  2084.   - When modifying a class object with 'modify', the modified object
  2085.     was not a class unless the 'class' keyword was included with the
  2086.     'modify' statement ("modify class foo" rather than "modify foo").
  2087.     This has been corrected; a modified class is still a class.
  2088.  
  2089.   - outhide(true) now returns a status indicator, which is a value that
  2090.     can be used in a subsequent call to outhide() to return output
  2091.     hiding to the state it was in before the outhide(true).  This
  2092.     allows you to nest text hiding.  When you use the nested form
  2093.     (which you do simply by using the return value of outhide(true) as
  2094.     the parameter - in place of nil - to the subsequent call to outhide()),
  2095.     the value returned by the second outhide() indicates whether any
  2096.     text output occurred ONLY BETWEEN THE NESTED CALLS.  For example:
  2097.     
  2098.      old_stat1 := outhide(true);
  2099.      "This is some hidden text.";
  2100.      old_stat2 := outhide(true);
  2101.      // write no text here
  2102.      new_stat2 := outhide(old_stat2);
  2103.      new_stat1 := outhide(old_stat1);
  2104.  
  2105.     Because outhide(old_stat2) indicates whether any output occurred
  2106.     during the NESTED outhide(true), new_stat2 = nil.  However, new_stat1
  2107.     = true, since output occurred after the first outhide(true).  Consider
  2108.     another sequence:
  2109.  
  2110.      old_stat1 := outhide(true);
  2111.      // write no text here
  2112.      old_stat2 := outhide(true);
  2113.      "This is some hidden text.";
  2114.      new_stat2 := outhide(old_stat2);
  2115.      new_stat1 := outhide(old_stat1);
  2116.  
  2117.     In this case, both new_stat1 and new_stat2 will be true, because
  2118.     hidden output occurred within both nested sections.
  2119.  
  2120.     The general form of a nested hidden output section looks like this:
  2121.  
  2122.          {
  2123.             local original_hide_stat;
  2124.         local nested_stat;
  2125.  
  2126.             hide_stat := outhide(true);
  2127.             // do whatever you want to do while output is hidden
  2128.         nested_stat := outhide(original_hide_stat);
  2129.      }
  2130.  
  2131.     Now nested_stat will indicate whether any output occurred during
  2132.     the nested outhide() - that is, between the outhide(true) and
  2133.     the outhide(original_hide_stat).  In addition, output hiding will
  2134.     be returned to the same state it was in prior to the original
  2135.     outhide(true).
  2136.  
  2137.   - The random number generator has been improved.  Many people have
  2138.     complained about the many undesirable properties of the old
  2139.     generator, especially when small upper limits were used.  The
  2140.     interface to the new random number generator is the same as
  2141.     before - call rand(upper_limit), which will return a uniformly
  2142.     distributed random number from 1 to upper_limit, inclusive.
  2143.  
  2144.     Note that the old random number generator will still be used if
  2145.     you don't call randomize().  This allows test scripts (which require
  2146.     a fixed sequence of random numbers in order to be repeatable) that
  2147.     were written with older versions to continue to operate unchanged.
  2148.     If you want numbers from the improved generator, be sure to call
  2149.     randomize().
  2150.  
  2151.   - When 'modify' was used on an object, the compiler sometimes did
  2152.     not correctly apply the original object's vocabulary and location
  2153.     to the new object.  This has been corrected.
  2154.  
  2155.   - restore() and undo() have been changed so that they always cancel
  2156.     all pending commands on the command line.  In the past, if the
  2157.     player typed several commands, and something happened (such as
  2158.     the player character dying) during one of the commands that led to
  2159.     an undo() or restore(), the remaining commands were still
  2160.     executed.  This has been fixed.
  2161.  
  2162.   - If you explicitly set an object's location to nil in its object
  2163.     definition, and the object inherited a location from a superclass,
  2164.     the system incorrectly placed the object in the contents list of
  2165.     the object named in the location inherited from the object's
  2166.     superclass.  This has been corrected.
  2167.  
  2168.   - "abort" can now be used within a daemon or fuse, and the
  2169.     expected behavior will occur.  In the past, "abort" within
  2170.     a fuse (or daemon) merely exited from the current fuse,
  2171.     but the remaining fuses and daemons were still executed.
  2172.     Now, "abort" will cause the entire turn to end; no more
  2173.     fuses or daemons will be executed on the current turn.
  2174.  
  2175.  
  2176. 2.1.1  09/09/93  enhancements
  2177.  
  2178.   - You can now access objwords(1) while deciding whether to use a
  2179.     default direct object in doDefault.  This is useful mostly if
  2180.     you want to prevent players from being able to use "all" with
  2181.     certain verbs, but still want to generate a default direct object
  2182.     for the verbs.  To do this, you can detect when objwords(1) = ['A']
  2183.     ('A' is the parser's internal code for "all", which saves you the
  2184.     trouble of checking for "everything" and shorter abbreviations as
  2185.     well as "all"):
  2186.  
  2187.       doDefault(actor, prep, iobj) =
  2188.       {
  2189.           if (objwords(1) = ['A'])
  2190.           {
  2191.               global.allMessage := 'You can\'t use "all" with this verb.';
  2192.           return [];
  2193.  
  2194.       /* your normal default object code goes here */
  2195.       }
  2196.  
  2197.     If you wish, you can also suppress the default message that the
  2198.     parser will generate ("I don't see what you're referring to").
  2199.     To do this, you'll have to write your own parseError() function
  2200.     and detect when an "all" violation has occurred (cleverly using the
  2201.     global.allMessage, which we set above for this purpose):
  2202.  
  2203.       parseError: function(str, num)
  2204.       {
  2205.           // if there's an allMessage waiting, use it instead of the default
  2206.           if (global.allMessage <> nil)
  2207.       {
  2208.           local r;
  2209.  
  2210.           r := global.allMessage;
  2211.           global.allMessage := nil;
  2212.           return r;
  2213.       }
  2214.       else
  2215.           return nil;
  2216.       }
  2217.     
  2218.   - The compiler's error message format has been changed slightly
  2219.     to work better with editors and workbench programs that scan error
  2220.     logs to go to lines with errors.  The format is now:
  2221.  
  2222.         file(line): error TADS-xxxx: message
  2223.  
  2224.     For example:
  2225.  
  2226.         deep.t(1151): error TADS-300: expected colon
  2227.  
  2228.  
  2229.   - The parser now accepts sentences of the form VERB PREP IOBJ DOBJ,
  2230.     where the PREP is *not* part of the verb.  For example, GIVE TO THE
  2231.     MAN THE BALL.  This change has two benefits.  First, while this
  2232.     type of sentence is not common in English, some other languages
  2233.     allow this type of phrasing, so the parser is now somewhat more
  2234.     adaptable to non-English languages.  Second, this allows for
  2235.     object defaulting and command completion when specifying just the
  2236.     indirect object, which was not possible before.  For example, if
  2237.     the player types ASK FOR A BEER, the parser will be able to attempt
  2238.     to provide a default (if one is available), or at least ask for the
  2239.     direct object.  Previous versions would simply say "I don't understand
  2240.     that sentence."  Note that the parser still attempts to combine the
  2241.     verb and preposition into a single phrase; the new action happens
  2242.     only when the verb and preposition don't go together (that is, they
  2243.     haven't been defined together as a "verb =" property of a deepverb).
  2244.     For example, suppose that a line like this appears in a deepverb:
  2245.  
  2246.         verb = 'pick up'
  2247.  
  2248.     In this case, PICK UP THE BOX will use THE BOX as the direct object,
  2249.     just as in previous versions.  Only when the verb-preposition combination
  2250.     is not specifically defined in a verb will the new phrasing be used.
  2251.  
  2252.   - When no preposition is specified between the direct and indirect objects,
  2253.     the parser will now evaluate a new property, nilPrep, in the deepverb
  2254.     object.  This property should return the preposition object that should
  2255.     be used as the preposition between the objects.  Previous versions of
  2256.     TADS always looked for an object that defined the word 'to' as a
  2257.     "preposition =" property.  While 'to' is almost always the correctly
  2258.     the correct preposition to substitute in English, it's obviously the
  2259.     wrong word in other languages; furthermore, the correct word in other
  2260.     languages is sometimes a function of verb.  If no nilPrep property is
  2261.     defined for the deepverb, the parser will still use the object whose
  2262.     "preposition =" property matches the word 'to'.
  2263.  
  2264.   - The class transparentItem in adv.t has been modified so it works better
  2265.     when you define an object that inherits from both transparentItem and
  2266.     container or openable.  First, an ldesc has been added so that the
  2267.     contents of a transparentItem are listed by default with the ldesc.
  2268.     Second, the "look in" command now works on a transparentItem.  In
  2269.     addition, the openable class has been changed so that the "look in"
  2270.     command can be used when an openable is also a transparentItem, even
  2271.     when the openable is closed (because you should be able to see the
  2272.     contents of a transparentItem regardless of whether it's open or closed).
  2273.     Thanks to Ron Hale-Evans for pointing out this problem and finding the
  2274.     solution.
  2275.  
  2276. 2.1.0  04/07/93  new features, enhancements, bug fixes
  2277.  
  2278.   - TADS finally has a way of changing objects and functions in
  2279.     adv.t without changing adv.t itself.  The new mechanism allows
  2280.     you to entirely replace a previously defined object or function
  2281.     with one of your own, and also lets you modify a previously
  2282.     defined object by adding or overriding properties.  Two new
  2283.     keywords have been added to the language to support these new
  2284.     features:  "replace" and "modify".
  2285.  
  2286.     Using these new features, it should be possible to make most
  2287.     of the changes to adv.t that are necessary while writing a game
  2288.     without actually changing the file adv.t itself.  This should
  2289.     make version upgrades much easier to apply, since you shouldn't
  2290.     need to reconcile any changes you have made to adv.t with the
  2291.     new version.
  2292.  
  2293.     High Energy Software requests that you advise us of any changes
  2294.     to adv.t that would facilitate modification and replacement of
  2295.     the objects defined in adv.t.  Examples would include common
  2296.     code fragments that could be moved into a function for easy
  2297.     replacement, and single deepverb objects that should be split
  2298.     into multiple objects.
  2299.  
  2300.     You can replace a previously-defined function with a new
  2301.     definition simply by prefacing your new definition with the
  2302.     keyword "replace"; for example, to replace adv.t's new
  2303.     scoreStatus function, you could do this:
  2304.  
  2305.        #include <adv.t>
  2306.  
  2307.        replace scoreStatus(points, turns)
  2308.        {
  2309.           setscore(cvtstr(pts) + ' points/' + cvtstr(turns) + ' moves');
  2310.        }
  2311.  
  2312.     You can do the same thing with objects.  For example, to replace
  2313.     a verb in adv.t, you could do something like this:
  2314.  
  2315.        #include <adv.t>
  2316.  
  2317.        /* we don't want "buckle", so replace adv.t's fastenVerb */
  2318.        replace fastenVerb: deepverb
  2319.           verb = 'fasten'
  2320.       sdesc = "fasten"
  2321.       prepDefault = toPrep
  2322.       ioAction(toPrep) = 'FastenTo'
  2323.        ;
  2324.  
  2325.     Replacing an object entirely deletes the previous definition of
  2326.     the object, including all inheritance information and vocabulary.
  2327.     The only properties of a replaced object are those defined in the
  2328.     replacement; the original definition is entirely discarded.
  2329.  
  2330.     You can also modify an object, which retains its original definition
  2331.     (including inheritance information, vocabulary, and properties), and
  2332.     allows you to add new properties and vocabulary.  You can also
  2333.     override properties, simply by redefining them in the new definition.
  2334.     The most common addition to an object from adv.t will probably be
  2335.     new verb associations; for example:
  2336.  
  2337.        modify pushVerb
  2338.           verb = 'nudge'
  2339.           ioAction(withPrep) = 'PushWith'
  2340.        ;
  2341.  
  2342.     Note several things about this example.  First, no superclass
  2343.     information can be specified in a "modify" statement; this is because
  2344.     the superclass list for the modified object is the same as for the
  2345.     original object.  Second, note that vocabulary has been added.
  2346.     The additional vocabulary does NOT replace the original vocabulary,
  2347.     but simply adds to the previously-defined vocabulary.  Further note
  2348.     that verb association pseudo-properties, such as doAction and ioAction,
  2349.     are legal in a "modify" definition.
  2350.  
  2351.     In a method that you redefine with "modify", you can use "pass"
  2352.     or "inherited" to refer to the REPLACED method.  In essence, using
  2353.     "modify" renames the original object, and then creates a new
  2354.     object under the original name; the new object is created as a
  2355.     subclass of the original (now unnamed) object.  There is no way
  2356.     to refer to the original object, except indirectly through the
  2357.     new replacement object.  Here's an example of "modify" and "pass":
  2358.  
  2359.         class testClass: object
  2360.         sdesc = "testClass"
  2361.     ;
  2362.  
  2363.         testObj: testClass
  2364.             sdesc =
  2365.         {
  2366.             "testObj...";
  2367.         pass sdesc;
  2368.         }
  2369.         ;
  2370.  
  2371.         modify testObj
  2372.             sdesc =
  2373.         {
  2374.             "modified testObj...";
  2375.         pass sdesc;
  2376.         }
  2377.     ;
  2378.  
  2379.     Evaluating testObj.sdesc results in this display:
  2380.  
  2381.         modified testObj...testObj...testClass
  2382.  
  2383.     However, you can override this behavior for a property by
  2384.     using the replace keyword on the property.  In the example
  2385.     above, we could do this instead:
  2386.  
  2387.         modify testObj
  2388.             replace sdesc =
  2389.         {
  2390.             "modified testObj...";
  2391.         pass sdesc;
  2392.         }
  2393.     ;
  2394.  
  2395.     This would result in the following display for testObj.sdesc:
  2396.  
  2397.         modified testObj...testClass
  2398.  
  2399.     The "replace" keyword before the property definition tells the
  2400.     compiler to completely delete the previous definitions of the
  2401.     property.  This allows you to completely replace the property,
  2402.     and not merely override it, meaning that "pass" and "inherited"
  2403.     will refer to the property actually inherited from the superclass,
  2404.     and not the original definition of the property.
  2405.  
  2406.   - It is now possible for the player to customize the colors used
  2407.     by the runtime.  A small new program, TRCOLOR, is provided to
  2408.     set up the runtime screen colors.  The program is self-explanatory;
  2409.     simply type TRCOLOR at the DOS prompt to invoke it.  Once you've
  2410.     selected your color scheme, TRCOLOR will create a small file
  2411.     called TRCOLOR.DAT (in the current directory); the runtime will
  2412.     read this file in subsequent game sessions.
  2413.  
  2414.     Note that you can use multiple TRCOLOR.DAT files, in much the same
  2415.     way you can use two CONFIG.TC files.  The runtime looks first for
  2416.     TRCOLOR.DAT in the current directory; if no such file is found, the
  2417.     runtime will then look in the directory where TR.EXE resides.  So,
  2418.     you can set up separate color schemes for each game you're playing,
  2419.     and have a default color scheme for games with no specific color
  2420.     scheme of their own.
  2421.  
  2422.   - The user interface of the MAKETRX program has been improved.
  2423.     For compatibility with existing makefiles, the old command line
  2424.     syntax is still allowed; however, you can now omit most of the
  2425.     arguments, and MAKETRX will use convenient new defaults.
  2426.  
  2427.     First, you can now omit the extensions on all the arguments.
  2428.     The extension assumed for the TR.EXE program is .EXE; for the
  2429.     game file it is .GAM; and for the executable output file it is .EXE.
  2430.  
  2431.     Second, you can now omit everything except the name of the game
  2432.     file.  If you omit the name of the TR.EXE program, MAKETRX attempts
  2433.     to find TR.EXE in the same directory as MAKETRX.EXE; so, if you
  2434.     simply keep all of your TADS executables in a single directory,
  2435.     you won't need to specify the location of TR.EXE when running MAKETRX.
  2436.     If you omit the name of the destination file, MAKETRX will use the
  2437.     same name as the game file, with the extension replaced by .EXE.
  2438.  
  2439.     The command line arguments to MAKETRX that are now understood are:
  2440.  
  2441.        maketrx gamefile
  2442.          Converts gamefile.gam into gamefile.exe, using TR.EXE from the
  2443.      same directory as MAKETRX.EXE.
  2444.  
  2445.        maketrx gamefile output
  2446.          Converts gamefile.gam into output.exe, using TR.EXE from the
  2447.      same directory as MAKETRX.EXE.
  2448.  
  2449.        maketrx \tads2\tr.exe gamefile output
  2450.          Converts gamefile.gam into output.exe, using \tads2\tr.exe.
  2451.  
  2452.  
  2453.   - The dobjGen and iobjGen mechanism has been changed slightly.
  2454.     In the original implementation, you could prevent the system
  2455.     from calling dobjGen/iobjGen by defining an appropriate verXoVerb
  2456.     property in the actual object, but NOT in a superclass.  This
  2457.     made it impossible to define a class that had exceptions to
  2458.     dobjGen/iobjGen except by explicitly testing for those verbs
  2459.     in the xobjGen routines.
  2460.  
  2461.     The change is that the system will now skip calling xobjGen
  2462.     if an appropriate verXoVerb/xoVerb property is defined in such
  2463.     a way that it "overrides" xobjGen for the object.  Here's an
  2464.     example:
  2465.  
  2466.        class cursedItem: item
  2467.            dobjGen(a, v, i, p) =
  2468.        {
  2469.            "As you touch <<self.thedesc>>, a bolt of lightning
  2470.            leaps from the object and sends you reeling away!";
  2471.        }
  2472.        iobjGen(a, v, d, p) = { self.dobjGen(a, v, d, p); }
  2473.        verDoInspect(actor) = { pass verDoInspect; }  // allow 'inspect'
  2474.        ;
  2475.  
  2476.     The change means that the presence of verDoInspect in the *class*
  2477.     prevents the system from calling dobjGen when the verb is "inspect",
  2478.     even for subclasses.  With the old system, since the subclass objects
  2479.     themselves didn't define verDoInspect, dobjGen would be called even
  2480.     though the verDoInspect logically overrides the dobjGen.
  2481.  
  2482.   - The restore() intrinsic has been extended to allow your game
  2483.     program to explicitly restore the saved game specified by the
  2484.     user as a parameter to your stand-alone game program.  This is
  2485.     currently only useful on the Macintosh, but the inclusion of
  2486.     code to test for this case will make your game work better on
  2487.     the Macintosh (and possibly other platforms in the future).
  2488.  
  2489.     The new functionality is invoked by calling restore(nil).  If
  2490.     a saved game was specified by the user at start-up time, the
  2491.     game will be restored, and nil will be returned.  If no file
  2492.     was specified, or an error occurred restoring the game, the
  2493.     function returns true.  To use this new behavior, we recommend
  2494.     placing the following code in your init function, before your
  2495.     introductory messages and other startup code:
  2496.  
  2497.        // check for a file to restore specified as a startup parameter
  2498.        if (restore(nil) = nil)
  2499.        {
  2500.            "\b[Restoring saved game]\b";
  2501.            scoreStatus(global.score, global.turnsofar);
  2502.            Me.location.lookAround(true);
  2503.            return;
  2504.        }
  2505.  
  2506.     Note that the run-time will still automatically restore the
  2507.     game provided as a parameter (on the Macintosh) after init returns
  2508.     if you do NOT include this code in init.  The reason for including
  2509.     this code is that it provides your game with greater control over
  2510.     the sequence of events during startup.  If you allow the run-time
  2511.     to perform the restore automatically, your entire init function will
  2512.     be executed; this may be undesirable, because it forces the user to
  2513.     view the entire introductory text even though they'll immediately
  2514.     restore a game after reading it.  If you place the restore(nil) call
  2515.     before your introductory text, the user will be spared the long text
  2516.     display; however, you'll still have complete control over any text
  2517.     that you want the user to see even when restoring a game, such as
  2518.     your copyright message.
  2519.  
  2520.   - New built-in function:  objwords(num), which provides a list of
  2521.     the actual words the user typed to refer to an object used in
  2522.     the current command.  The argument (num) is a number specifying
  2523.     which object you're interested in:  1 for the direct object, or
  2524.     2 for the indirect object.  The return value is a list of strings;
  2525.     the strings are the words used in the command.  If a special
  2526.     word, such as "it", "them", or "all", was used to specify the
  2527.     object, the list will have a single element, which is the special
  2528.     word used.
  2529.  
  2530.     Examples:
  2531.  
  2532.        >take all
  2533.        objwords(1) -> ['all']
  2534.        objwords(2) -> []
  2535.  
  2536.        >put all in red box
  2537.        objwords(1) -> ['all']
  2538.        objwords(2) -> ['red' 'box']
  2539.  
  2540.        >put blue box in it
  2541.        objwords(1) -> ['blue' 'box']
  2542.        objwords(2) -> ['it']
  2543.  
  2544.        >put blue folder and green book in red box
  2545.        blue folder:
  2546.        objwords(1) -> ['blue' 'folder']
  2547.        objwords(2) -> ['red' 'box']
  2548.        green book:
  2549.        objwords(1) -> ['green' 'book']
  2550.        objwords(2) -> ['red' 'box']
  2551.  
  2552.     This function could potentially be useful in such cases as
  2553.     "ask actor about object", because it allows you to determine
  2554.     much more precisely what the player is asking about than would
  2555.     otherwise be possible.
  2556.  
  2557.   - The setit() function now takes nil as a parameter; this prevents
  2558.     using "it" in a command until another object has been referenced.
  2559.     nil can be used for "him" and "her" as well, as described below.
  2560.  
  2561.   - Enhancements to the setit() built-in function:  you can now directly
  2562.     set the 'him', 'her', and 'them' values using the setit() function.
  2563.  
  2564.        - To set 'them', simply call setit() with a list value:
  2565.          setit([redBook blueBook boots]);
  2566.  
  2567.        - To set 'him', add a second argument value of 1 to the call:
  2568.          setit(joe, 1);
  2569.  
  2570.        - To set 'her', add a second argument value of 2:
  2571.          setit(harriet, 2);
  2572.  
  2573.   - The restart() built-in function now takes an optional set of
  2574.     arguments:  a pointer to a function, and a parameter value for
  2575.     the function (if one is provided, the other is also required, but
  2576.     both can be omitted).  If they're provided, TADS calls the function
  2577.     with the provided parameter value *after* resetting the game, and
  2578.     before running the init() function.  This allows you make the game
  2579.     start slightly differently after a restart than on the initial startup.
  2580.     adv.t uses this feature to call the function initRestart, with the
  2581.     parameter value global.initRestartParam, upon restart.  The initRestart
  2582.     function defined in adv.t simply sets the flag global.restarting to
  2583.     true.  Your game can test global.restarting (in the init function or
  2584.     elsewhere) to determine whether the game has been restarted, or is
  2585.     being run for the first time.  You can also replace initRestart()
  2586.     with your own function if you wish to do something more complicated;
  2587.     in this case, if you wish to pass information to the function, you
  2588.     can simply store it in global.initRestartParam, and it will be passed
  2589.     to the function automatically by adv.t upon restarting.
  2590.  
  2591.   - New built-in function:  inputkey() reads a single keystroke from
  2592.     the keyboard.  The function takes no arguments.  When called,
  2593.     inputkey() will flush any pending output text, then pause the game
  2594.     until the player hits a key.  It then returns a string containing
  2595.     the single key hit by the player.  Note that the function does NOT
  2596.     provide a portable mechanism for reading non-standardized keys;
  2597.     special keys such as cursor arrow keys and function keys will return
  2598.     a string specific to the type of computer being used.  Your game
  2599.     will not be portable if you make use of any non-standardized key
  2600.     values returned by inputkey().  To ensure portability, use inputkey()
  2601.     strictly with standard ASCII keys (alphabetic, numeric, and punctuation
  2602.     keys).  It is also fully portable if you simply ignore the return value
  2603.     and use the function only to pause and wait for a key.
  2604.  
  2605.   - Several changes have been made for better national language
  2606.     support.  First, the DOS version now allows 8-bit characters
  2607.     (characters in the extended character set, with ASCII code
  2608.     from 128 to 255) in text displayed by the game, vocabulary
  2609.     words, and player commands.  Characters in the extended character
  2610.     set are always considered to be alphabetic, so these characters
  2611.     can only be used in input as parts of words (hence, symbols
  2612.     from the extended character set that appear as punctuation
  2613.     marks can't be used as punctuation in player commands).
  2614.  
  2615.   - The debugger now has "More" mode in the command window.  When
  2616.     a single display won't fit in the window (for example, a long
  2617.     stack traceback), the debugger will prompt with "[More]" each
  2618.     time the window fills up.  Hit the space bar to scroll by a
  2619.     whole screen, or the Return/Enter key to scroll by a single line.
  2620.  
  2621.   - The debugger has a new "call history" feature.  This feature
  2622.     captures information about every function and method call,
  2623.     including argument lists and return values (if any), and saves
  2624.     the information for future inspection.  Several new commands
  2625.     have been added to the debugger to support call history:
  2626.  
  2627.         c+    Enables call history, and clears previous history.
  2628.         c-    Disables call history capture.
  2629.         cc    Clears all current history information.
  2630.         c     Displays current history information.
  2631.  
  2632.     The reason that call history can be enabled and disabled is
  2633.     that enabling the feature slows down the debugger substantially,
  2634.     because it must store information every time a method is called.
  2635.  
  2636.     This feature could be useful if you're trying to figure out the
  2637.     sequence of method calls that occurs during the execution of
  2638.     a command.  At the debugger command line, type c+ to turn on
  2639.     call history; then, type g to resume your game.  Type the command
  2640.     that you want to debug, then type DEBUG at the game prompt to
  2641.     return to the debugger.  Now type c- to turn off call history,
  2642.     and c to display the history information from the command you
  2643.     just executed.  This will allow you to see every method and
  2644.     function that was called by TADS, as well as all the methods
  2645.     and functions called by your code.
  2646.  
  2647.     The call history display will have each function/method call indented
  2648.     by a number of spaces indicating the nesting depth; any method/function
  2649.     called by TADS will be at the left margin, any methods/functions called
  2650.     by the first one will be indented one space, any methods/functions
  2651.     called by those will be indented two spaces, and so on.  The return
  2652.     values will be indented by the same number of spaces as the function
  2653.     itself was.  Note that a return value may be separated from its
  2654.     entrypoint by several lines, because calls made by the function
  2655.     will appear between the function entry and the return value.
  2656.  
  2657.   - Another new national language feature is the addition of
  2658.     several new parser-called user functions that allow better
  2659.     user control over the generation of parser messages.  The
  2660.     new functions have been added because some people have found
  2661.     that the parseError() function is not sufficiently flexible
  2662.     for some situations, because it only allows changing the text
  2663.     of messages on a piecewise basis; when complete messages need
  2664.     to be built out of several pieces, it's necessary to be able to
  2665.     take over the entire process of building the message.  The new
  2666.     functions allow full control of the generation of certain messages.
  2667.  
  2668.     parseAskobj(v, ...):  This function is called when the parser
  2669.     needs to ask the player for a direct or indirect object to complete
  2670.     the command.  For example, if the player just types "take", and
  2671.     several objects are present that could be taken, the parser must
  2672.     ask the player what to take.  If a direct object is being requested,
  2673.     the function will have only one argument (the verb).  If an indirect
  2674.     object is being requested, the function will have *two* arguments;
  2675.     the second argument will be the preposition.  Note that the preposition
  2676.     can be nil, in which case you can assume that "to" is to be used.
  2677.     The implementation below emulates the default behavior.
  2678.  
  2679.         parseAskobj: function(v, ...)
  2680.     {
  2681.         "What do you want to <<v.sdesc>>";
  2682.         if (argcount = 2)
  2683.         {
  2684.             local p := getarg(2);
  2685.             " it << p ? p.sdesc : "to" >>";
  2686.         }
  2687.         "?";
  2688.     }
  2689.  
  2690.     parseDisambig(string, list):  This function is called by the
  2691.     parser when objects need to be disambiguated.  If this optional
  2692.     function is provided, it is called with the string that the player
  2693.     typed which is in need of disambiguation, and a list of the objects
  2694.     that match the string.  The implementation below emulates the
  2695.     parser's default behavior.
  2696.  
  2697.         parseDisambig: function(str, lst)
  2698.         {
  2699.             local i, tot, cnt;
  2700.         
  2701.             "Which << str >> do you mean, ";
  2702.             for (i := 1, cnt := length(lst) ; i <= cnt ; ++i)
  2703.             {
  2704.                 lst[i].thedesc;
  2705.                 if (i < cnt) ", ";
  2706.                 if (i+1 = cnt) "or ";
  2707.             }
  2708.             "?";
  2709.         }
  2710.  
  2711.     parseError2(v, d, p, i):  The parser calls this function to
  2712.     generate the default error message stating that the verb attempted
  2713.     isn't accepted by the objects involved; this happens when either
  2714.     the indirect object doesn't define an appropriate verIoXxxx method,
  2715.     or the direct object doesn't define an appropriate verDoXxxx method.
  2716.     Only one of 'd' (direct object) or 'i' (indirect object) will be
  2717.     non-nil.  If 'i' is nil, so will 'p' (preposition).  The verb, 'v',
  2718.     will never be nil.  Note that 'p' can be nil even when 'i' is not,
  2719.     in which case you should assume that the preposition is "to".
  2720.     The implementation below behaves the same as the parser's default.
  2721.  
  2722.         parseError2: function(v, d, p, i)
  2723.         {
  2724.             "I don't know how to << v.sdesc >> ";
  2725.             if (d)
  2726.                 "<< d.thedesc >>.";
  2727.             else
  2728.             "anything << p ? p.sdesc : "to" >> << i.thedesc >>.";
  2729.         }
  2730.  
  2731.     parseDefault(obj, prp):  This function is called when the parser
  2732.     is assuming a default object.  If a default direct object is being
  2733.     assumed, prp (the preposition) will be nil; otherwise, prp will have
  2734.     the object corresponding to the preposition preceding the indirect
  2735.     object.  The implementation below provides the default behavior.
  2736.  
  2737.         parseDefault: function(obj, prp)
  2738.         {
  2739.             "(";
  2740.             if (prp) "<< prp.sdesc>> ";
  2741.             obj.thedesc;
  2742.             ")";
  2743.         }
  2744.  
  2745.     Note that all three of these new functions are optional.  If any
  2746.     is omitted, the parser uses the default behavior, so existing games
  2747.     will run unchanged.  You can include any one without including the
  2748.     others; these new functions are all independent.  Note also that
  2749.     the default parser behavior continues to use parseError the same
  2750.     way it has since parseError was introduced; however, when these
  2751.     new functions are provided, the corresponding parseError calls will
  2752.     obviously no longer be made.
  2753.  
  2754.   - COMPATIBILITY NOTE:  By default, the .GAM files produced by
  2755.     the 2.1.0 compiler will NOT be compatible with previous
  2756.     versions of the runtime, due to several changes to the .GAM
  2757.     file format.  However, a new compiler option has been added
  2758.     that allows you to specify which .GAM file format to produce:
  2759.  
  2760.       -fv a   produces .GAM format compatible with 2.0.14 or earlier
  2761.       -fv b   produces game file format requiring 2.1.0 or later
  2762.       -fv *   (default) produces latest file format (currently b)
  2763.  
  2764.     If you want your game to be compatible with older versions of
  2765.     the runtime, use -fv a.  The 2.1.0 runtime is compatible with
  2766.     .GAM files produced by ANY version of the compiler; the runtime
  2767.     automatically detects which file format version it is reading.
  2768.  
  2769.     Note that using -fv a will prevent you from being able to call
  2770.     an external function from within the init function (see the bug
  2771.     fix described below).  In addition, even when using -fv a, since
  2772.     previous versions of the run-time did not provide the new built-in
  2773.     functions, your game will be incompatible with runtimes prior to
  2774.     2.1.0 -- regardless of whether you use -fv a or not -- if you
  2775.     use any new built-in functions.
  2776.  
  2777.     In the future, if there is another incompatible .GAM file format
  2778.     change, additional -fv options will be added to the new compiler.
  2779.  
  2780.   - One of the changes to the .GAM file format makes it much more
  2781.     compressible with archiving tools (such as ZIP).  Previous
  2782.     .GAM files typically compressed by only 10 to 20%; the files
  2783.     produced with file format B are generally compressible by 40
  2784.     to 50%.
  2785.  
  2786.   - runfuses and rundaemons had a bug that reset the run-time
  2787.     stack, causing problems if a nested method or function
  2788.     called these functions.  This has been corrected.
  2789.  
  2790.   - Subtracting one list from another didn't work as documented.
  2791.     This has been corrected.
  2792.  
  2793.   - In previous versions, external functions could not be called
  2794.     while the init function was running.  This was an unintentional
  2795.     side-effect of the way external functions were loaded, and the
  2796.     problem has been corrected.  External functions can now be called
  2797.     at any time.
  2798.  
  2799.   - A new warning has been added that can help you track down
  2800.     unterminated strings.  Whenever the compiler sees a line that
  2801.     begins with a semicolon or close brace (';' or '}') inside
  2802.     a string, it will issue a warning.  While this is just a guess
  2803.     that the string may be unterminated, it's often right, especially
  2804.     if you follow the general formatting style used by adv.t:  always
  2805.     end a function with a brace in the first column of a new line,
  2806.     and always end an object with a semicolon in the first column of
  2807.     a new line.
  2808.  
  2809.     Note that we strongly recommend that you follow this formatting
  2810.     style in your code, both for general readability and because it
  2811.     may enhance your code's compatibility with future High Energy
  2812.     Software products that use assumptions about formatting style
  2813.     that are similar to that used to generate the new unterminated
  2814.     string warning.
  2815.  
  2816.   - Several small enhancements and bug fixes have been made to
  2817.     adv.t:
  2818.  
  2819.        - A new property has been added to nestedroom objects:
  2820.          statusPrep, which displays "on" or "in" (or whatever),
  2821.      as appropriate, for messages such as "Spaceship, in chair".
  2822.      This defaults to "in" for nestedroom, and "on" for beditem.
  2823.      Other nestedroom objects you define may want to customize it.
  2824.  
  2825.        - There was a bug that allowed the player to throw a fixeditem
  2826.          that was (indirectly) being carried (for example, a fixeditem
  2827.          that is part of another object that can be carried) at something.
  2828.      This has been fixed.
  2829.  
  2830.        - The follower class did not 'exit' at the end of its actorAction.
  2831.          This has been fixed.
  2832.  
  2833.        - The follower class now makes use of iobjGen and dobjGen to respond
  2834.          with an appropriate message ("the actor is no longer here") to
  2835.      any command other than "follow".
  2836.  
  2837.        - The clothingItem class has been enhanced to allow "get out of"
  2838.          to be used to take off the item.
  2839.  
  2840.        - All of the verbs containing the word "look" now have synonyms
  2841.          with "l" as well:  l at, l on, l in, l under, l around, l thru,
  2842.      and so on.
  2843.  
  2844.        - A bug has been fixed that allowed the command "take all from foo"
  2845.          to remove the contents of "foo" even if it was closed.  The
  2846.      change is to the doDefault method in takeVerb.
  2847.  
  2848.        - The vehicle class has been adjusted so that the player can't
  2849.          take a vehicle or otherwise manipulate it while the player is
  2850.      currently in the vehicle -- this is important for things such
  2851.      as rubber rafts which can be used both as vehicles and ordinary
  2852.      carryable items.  dobjGen and iobjGen are used to accomplish
  2853.          this; the only allowed verbs on a vehicle while it's occupied
  2854.      by the player are inspectVerb, getOutVerb, outVerb, and putVerb
  2855.      with the vehicle as an indirect object (allowing objects to be
  2856.      put into the vehicle while it's occupied).  If you want to allow
  2857.      additional verbs in a particular vehicle, override dobjGen or
  2858.      iobjGen as appropriate, and simply return if the verb matches
  2859.      any of the verbs you wish to add:
  2860.  
  2861.          dobjGen(a, v, i, p) =
  2862.          {
  2863.              // allow "launch" and "land" while in the magic raft
  2864.              if (v <> launchVerb and v <> landVerb)
  2865.              pass dobjGen;
  2866.          }
  2867.  
  2868.   - The compiler now detects usage (both explicit and implicit)
  2869.     of "self" in functions.  This has always been illegal, but
  2870.     in previous versions the compiler did not notice; any uses
  2871.     of "self" in functions resulted in a run-time error (often
  2872.     a mysterious error, such as a cache manager severe error and
  2873.     abnormal termination due to a reference to a non-existent
  2874.     object).  This was especially troublesome when a property
  2875.     name was used as a local variable when the local variable
  2876.     wasn't declared; since the v2 compiler assumes "self" in
  2877.     references to properties that don't include an object
  2878.     qualification, the compiler would silently turn an undefined
  2879.     variable usage into a reference to "self".  The compiler will
  2880.     now flag a new error in these cases:  TADS-344, "self" is not
  2881.     valid in this context.  If you get this error without an
  2882.     explicit reference to "self", you probably have an implicit
  2883.     reference, which means you probably are using an undeclared
  2884.     local variable.  Adding a "local" declaration for the variable
  2885.     should clear the error.
  2886.  
  2887.   - "Her" was not set properly, even when the isHer property was
  2888.     set to true for an object.  This has been corrected.
  2889.  
  2890.   - A new compiler option has been added:  -v, for "verbosity".
  2891.     This option lets you tell the compiler how much warning
  2892.     information you'd like to see.  By default, the verbosity
  2893.     level is 0 (zero), which causes certain warnings to be
  2894.     suppressed.  You can specify -v followed by a number to
  2895.     set a higher verbosity level.  So far, only the messages
  2896.     listed below are affected by -v, but the verbosity level
  2897.     for certain warnings may be changed in the future (and new
  2898.     warnings may be added at high verbosity levels).  Currently,
  2899.     the general meaning of the verbosity levels is:  0, report
  2900.     only serious errors and warnings; 1, report suspicious
  2901.     situations that may or may not indicate errors; 2, report
  2902.     all information, including general warning information that
  2903.     usually does not indicate any actual problem.
  2904.  
  2905.   - A new compiler option has been added:  -e file, for "error logging".
  2906.     This option captures all messages generated by the the compiler to
  2907.     the specified file.  Messages are also displayed interactively as
  2908.     normal.  WARNING: if the file specified with -e already exists, it
  2909.     is overwritten with the error information.
  2910.  
  2911.   - The compiler warning messages about "object not found" for the
  2912.     optional objects (preinit, preparse, parseError, commandPrompt)
  2913.     are now suppressed if the verbosity level is less than 2.
  2914.     If you specify -v2 (or -v with a higher number than 2), these
  2915.     messages will be displayed for all optional objects not found;
  2916.     otherwise, no warnings will be generated.
  2917.  
  2918.   - The compiler warning messages about "#include file already included"
  2919.     are now suppressed if the verbosity level is less than 1.
  2920.  
  2921.  
  2922. 2.0.14  02/10/93  bug fixes, minor enhancements
  2923.  
  2924.   - A new backslash code has been added to the output formatter that
  2925.     causes the formatter to pass the next two bytes unchanged.
  2926.     This has been added primarily for 16-bit character sets, to allow
  2927.     two-byte characters that contain a backslash ('\', ASCII 92) as
  2928.     one of their two bytes to be passed through the formatter without
  2929.     interpretation as part of a backslash sequence.  The new code
  2930.     is "\-"; the two bytes following the \- are not interpreted by
  2931.     the formatter.  For example:
  2932.  
  2933.        "\-\bTesting...\nDone!";
  2934.  
  2935.     displays:
  2936.  
  2937.        \bTesting...
  2938.        Done!
  2939.  
  2940.     Note that the "\b" sequence is not interpreted as a blank line,
  2941.     as it would normally be, but is simply displayed, because the \-
  2942.     suppresses any interpration of the next two bytes.  The "\n",
  2943.     however, is interpreted as a newline as normal, since it is not
  2944.     quoted by a \- sequence.
  2945.  
  2946.   - You can now break out of an infinite loop in your game while
  2947.     running under the debugger.  On DOS, if your game goes into a loop,
  2948.     hit the Control + Break keys - the loop should immediately be
  2949.     aborted and control returned to the debugger command line.
  2950.     The Control-Break sequence also works with the runtime; it
  2951.     causes control to be returned to the player command line.
  2952.     Note that the interrupted command is automatically undone, so
  2953.     the interrupt sequence will not leave the game in an inconsistent
  2954.     state.  Note also that only long loops can be interrupted; the
  2955.     system only checks for interruptions once every several hundred
  2956.     instructions for greater efficiency.
  2957.  
  2958.   - The debugger will now catch run-time errors, activating the
  2959.     debugger command line when an error occurs.  The source will
  2960.     be positioned at the location of the error, as though a breakpoint
  2961.     had been set there, and the error message will be displayed.  Local
  2962.     variables can be evaluated as normal to help determine the cause of
  2963.     the error.  When you resume execution (with Trace, Step, or Go),
  2964.     the current command will be aborted and control will return to the
  2965.     player command prompt.  Note that there's no way to "fix" the error
  2966.     once it's been caught, but you can at least see exactly where the
  2967.     error occurred and determine the conditions that caused it.  Note
  2968.     also that certain types of errors, such as memory management errors,
  2969.     will not invoke the debugger; only errors that are directly caused
  2970.     by an error in your game program will trap to the debugger.
  2971.  
  2972.   - The debugger incorrectly reported files as "not found" in the
  2973.     list of modules produced by the "fl" command.
  2974.  
  2975.   - The runtime was inconsistent in its calls to ioDefault.  Sometimes
  2976.     it called ioDefault(actor, prep), and other times it called it as
  2977.     ioDefault(actor, prep, dobj) - this made it impossible to define the
  2978.     method correctly if argument checking was enabled.  This has been
  2979.     corrected so that the dobj parameter is never included.  When attempting
  2980.     to identify a default indirect object, the parser never has a direct
  2981.     object available, since the indirect object must be resolved first;
  2982.     hence, the dobj that was occasionally being passed by the parser was
  2983.     always nil.  The unnecessary extra parameter has been removed:  the
  2984.     method is now always called as ioDefault(actor, prep).
  2985.  
  2986.   - The compiler generated incorrect code if the implicit "self" object
  2987.     was used to reference an object (that is, a property was used without
  2988.     an object specifier).  This resulted in "invalid opcode" errors at
  2989.     run-time.
  2990.  
  2991.   - The compiler sometimes complained that an included file couldn't
  2992.     be found, even when the included file was explicitly loaded as part
  2993.     of a precompiled header.  This happened any time the included file
  2994.     was not in the current directory at compilation time.
  2995.  
  2996.   - The compiler aborted with an "assertion failure" (which indicates
  2997.     that the compiler detected that it was in an internally inconsistent
  2998.     state, which should not be attainable under any circumstances) when
  2999.     the game program used a variable or expression on the right hand
  3000.     side of a dot operator and an object on the left hand side.
  3001.  
  3002. 2.0.13  01/16/93  enhancements and bug fixes
  3003.  
  3004.   - If a vocabulary word contained a single quote character, the
  3005.     word could not be matched at run-time.
  3006.  
  3007.   - The run-time now allows all characters from the extended character
  3008.     set (ASCII codes above 127) to be displayed.  The run-time
  3009.     previously converted some extended characters into spaces.
  3010.  
  3011.   - The compiler did not allow a label to precede the first goto
  3012.     that referred to the label.
  3013.  
  3014.   - The debugger will now stop at a breakpoint in a method that
  3015.     is inherited by an object.  For example, if a breakpoint is
  3016.     set at room.lookAround, and startroom inherits lookAround
  3017.     from the class room, the debugger will stop at startroom.lookAround.
  3018.     It does not, however, stop on startroom.lookAround if startroom
  3019.     overrides lookAround.
  3020.  
  3021.   - The compiler will now flag an assignment to an undeclared
  3022.     symbol as an error.  It previously assumed that the symbol
  3023.     referred to a property, with an implicit object of "self".
  3024.     This was almost never desirable, because this type of
  3025.     assignment was most often coded in error -- the game author
  3026.     usually meant to code an assignment to a local variable, but
  3027.     either misspelled the variable name or forgot to declare it.
  3028.  
  3029.   - remfuse/remdaemon/unnotify no longer signal an error if the
  3030.     item being removed is not active.  Several game authors have
  3031.     indicated that this error is not helpful, since it makes it
  3032.     impossible to unconditionally remove a fuse -- you have to
  3033.     check to make sure it hasn't fired yet, which create a lot
  3034.     of unnecessary overhead.
  3035.  
  3036.   - NEW BUILT-IN FUNCTION:  intersect(list1, list2) returns the
  3037.     intersection of two lists; that is, it returns the list of
  3038.     all of the elements of the shorter of list1 and list2 that
  3039.     are also in the other list.  For example:
  3040.  
  3041.         [1 2 3 4 5] and [1 3 5 7]     ->    [1 3 5]
  3042.         ['abc' 'def'] and ['abc']     ->    ['abc']
  3043.  
  3044.     This new function can be used to improve performance in cases
  3045.     where (effectively) one list of items is being searched for
  3046.     the presence of another list of items.
  3047.  
  3048.   - NEW BUILT-IN FUNCTION:  runfuses() runs all expired fuses, if any.
  3049.     Returns true if any fuses expired, nil otherwise.  This function has
  3050.     been added to allow greater control over fuse processing.  Note that
  3051.     fuses set with both the setfuse() and notify() built-in functions
  3052.     are run.  This function takes no arguments.
  3053.  
  3054.   - NEW BUILT-IN FUNCTION:  rundaemons() runs all daemons.  This function
  3055.     runs daemons set with both the setdaemon() and notify() functions.
  3056.     rundaemons() takes no arguments and returns no value.
  3057.  
  3058.   - NEW BUILT-IN FUNCTION:  getfuse allows you to determine if a fuse
  3059.     (set with either setfuse or notify) is active.  It returns nil if
  3060.     the fuse is not active (i.e., it has been activated or removed),
  3061.     or the number of turns left.
  3062.  
  3063.     For setfuse() fuses:   getfuse(fuse_func, parameter)
  3064.     For notify() fuses:    getfuse(object, &message)
  3065.  
  3066.   - NEW BUILT-IN FUNCTION:  gettime() returns the current time.  The
  3067.     time is returned as a list of numeric values for easy processing by
  3068.     your game:
  3069.  
  3070.       [year month day weekday yearday hour minute second elapsed]
  3071.  
  3072.     The specific meanings of the values are:
  3073.  
  3074.           year        - calendar year (e.g., 1992).
  3075.           month       - month number (January = 1, February = 2, etc.)
  3076.           day         - number of the day within the current month
  3077.           weekday     - day of the week (1 = Sunday, 2 = Monday, etc.)
  3078.           yearday     - day of the year (1 = Jan 1)
  3079.           hour        - hour of the day on 24-hour clock (midnight = 0,
  3080.                         noon = 12, 3 PM = 15, etc.)
  3081.           minute      - minute within the hour (0 to 59)
  3082.           second      - second within the minute (0 to 59)
  3083.           elapsed     - the number of seconds since January 1, 1970,
  3084.                         00:00:00 GMT.  This last value is useful for
  3085.                         computing the difference between two points
  3086.                         in time.
  3087.  
  3088.   - NEW FEATURE:  The parser now calls an additional method in
  3089.     each direct and indirect object under certain circumstances.
  3090.     These new methods are called dobjGen (general use of an object
  3091.     as a direct object) and iobjGen.  These methods are called
  3092.     immediately prior to the appropriate verXo<Verb> method.  The
  3093.     sequence of calls depends on the command, as detailed below.
  3094.  
  3095.     The purpose of these methods is to allow you to define a catch-all
  3096.     routine that is called whenever an object is used in a command.
  3097.     It is sometimes desirable to be able to take some action whenever
  3098.     an object is mentioned, regardless of the verb involved.  For
  3099.     example, you might wish to define a cursed object that damages
  3100.     the player (such as by taking away a treasure) whenever the
  3101.     object is touched or manipulated in any way; these new methods
  3102.     make it possible to do this without having to override every
  3103.     possible verb handler.
  3104.  
  3105.     When a command is issued with an indirect object, the parser
  3106.     checks to see if the indirect object *directly* defines the
  3107.     io<Verb> method.  If not, the parser calls iobj.iobjGen(actor,
  3108.     verb, dobj, prep).  The parser then checks to see if the direct
  3109.     object *directly* defines the verDo<Verb> method.  If not, the
  3110.     parser calls dobj.dobjGen(actor, verb, iobj, prep).
  3111.  
  3112.     When a command is issued with only a direct object, the parser
  3113.     checks to see if the object *directly* defines the do<Verb> method.
  3114.     If not, the parser calls dobj.dobjGen(actor, verb, nil, nil).
  3115.  
  3116.     Note that an object "directly defines" a method if the method
  3117.     is defined in the object itself -- that is, the object does
  3118.     not merely inherit the method from its class.
  3119.     
  3120.     These new methods have no return value, and need not do anything.
  3121.     If they're undefined, the behavior is exactly the same as in
  3122.     previous versions.  So, existing games should continue to run
  3123.     unchanged.
  3124.  
  3125.     The reason that these methods are not called when the object
  3126.     directly defines an appropriate verb handler is that these
  3127.     methods are intended as a generic catch-all verb handler.
  3128.     When a specific handler for the current verb is already defined
  3129.     in the object, there should be no need to call the generic
  3130.     handler, since the object already defines specific behavior
  3131.     for that verb.
  3132.  
  3133.  
  3134. 2.0.12  No such release (for internal release coordination)  bug fixes
  3135.  
  3136.   - Switch statements did not properly process all datatypes.
  3137.  
  3138.   - Assignment operations did not work correctly on list elements.
  3139.     For example:  l := [1 2 3]; l[2] += 5; did not properly leave
  3140.     the value of l as [1 7 3].
  3141.  
  3142. 2.0.11  12/20/92  bug fixes
  3143.  
  3144.   - Goto statement labels were occasionally not released properly,
  3145.     resulting in spurious internal errors.
  3146.  
  3147.   - The 'continue' statement did not work as documented in 'for'
  3148.     statements.  Instead of jumping to the re-initializer expression,
  3149.     as it now does, the 'continue' incorrectly jumped to the condition.
  3150.  
  3151.   - The run-time is slightly smaller and faster.
  3152.  
  3153.   - The compiler did not process locals correctly when multiple disjoint
  3154.     blocks within a function or method had locals, and a later block had
  3155.     fewer locals than a previous block (yes, it's a somewhat obscure bug).
  3156.  
  3157. 2.0.10  No such release (to synchronize with Mac release levels)
  3158.  
  3159. 2.0.9  12/12/92  MS-DOS bug fixes and new features
  3160.  
  3161.   - The file selector dialog displayed incorrect information when a
  3162.     directory name that used all 11 characters was displayed.
  3163.  
  3164.   - The file selector now saves and restores all default directory and
  3165.     disk information.  The current disk, and the current directory on
  3166.     each disk, will be the same when TR is terminated as it was when
  3167.     TR was first run.  (This applies to TDB as well.  It's particularly
  3168.     important for TDB, because TDB needs to have the source files in
  3169.     the current working directory if an absolute path was not specified
  3170.     with -I.)
  3171.  
  3172.   - NEW FEATURE:  the new user function commandPrompt, if provided by
  3173.     the user's game program, will be called prior to each player command.
  3174.     If the commandPrompt function is provided, the default ">" prompt is
  3175.     NOT displayed; if no commandPrompt function is defined, the default ">"
  3176.     is used.  This should not affect existing games at all, unless a game
  3177.     defines its own function, method, or property called commandPrompt
  3178.     having a different purpose.  The commandPrompt function returns no
  3179.     value.  The function takes a single argument:  a number, indicating
  3180.     the type of command that the system is prompting for:
  3181.  
  3182.        0  - normal command
  3183.        1  - command after invalid word (allowing "oops" to be used)
  3184.        2  - disambiguation (after "which x do you mean..." question)
  3185.        3  - command after askdo (after "what do you want to x?")
  3186.        4  - command after askio
  3187.  
  3188.     Note that the default prompt in all cases is simply ">", and in all
  3189.     cases a new command can be entered.  However, when the type code is
  3190.     2, 3, or 4, a question has just been displayed by the run-time, so
  3191.     the commandPrompt function may want to suppress any pre-command
  3192.     information or prompt text.  Case 1 is generally identical to case 0.
  3193.  
  3194.     NOTE:  As with the other optional user-provided functions, the
  3195.     compiler will issue a warning message if commandPrompt is not
  3196.     defined by your game.  If your game doesn't provide a commandPrompt
  3197.     function, you can ignore this warning.  The warning is provided so
  3198.     that, if you intended to provide a commandPrompt function, you will
  3199.     be informed if the compiler didn't find it (which could mean that
  3200.     you forgot to define it, or misspelled it).
  3201.  
  3202.   - NEW FEATURE:  A new built-in function has been added, which allows
  3203.     the game program to suppress the display of text that would normally
  3204.     be displayed with double-quoted strings or the say() function.  The
  3205.     function is called outhide(), and it takes one argument:  a flag,
  3206.     indicating whether to suppress or re-enable the display of output.
  3207.     If the flag is true, output is suppressed; if the flag is nil, output
  3208.     is re-enabled.  Any output that occurs between outhide(true) and
  3209.     outhide(nil) is discarded.  However, outhide(nil) returns a value
  3210.     indicating whether any output did in fact occur since the call to
  3211.     outhide(true); this allows you to determine if any output would have
  3212.     occurred, even though the output is not seen by the player.  Note
  3213.     that this is effectively the same mechanism used by the player command
  3214.     parser for noun disambiguation using the verDoXxx and verIoXxx
  3215.     methods, as described in the TADS author's manual.  There is no way
  3216.     to recover the text that was suppressed by outhide(); the text is
  3217.     simply discarded, so the only information available is whether any
  3218.     text was generated.
  3219.  
  3220. 2.0.8  12/03/92  (tc/tdb 2.0.7, tr 2.0.8) MS-DOS bug fixes and minor changes
  3221.  
  3222.   - The display initialization code was incorrectly attempting to clear
  3223.     a zero-line region of the display.  This resulted in extremely long
  3224.     delays on some computers (due to an incorrect BIOS call made by TADS).
  3225.  
  3226.   - NEW FEATURE:  When the keyword $$ABEND is typed as the entire command,
  3227.     the run-time immediately terminates and returns to DOS.  This emergency
  3228.     escape is provided so that TR can be terminated if the game somehow
  3229.     gets into a state where a more graceful exit is not possible.
  3230.  
  3231.   - The compiler did properly detect when an undefined object was used
  3232.     as the superclass of another object.  This generally resulted in
  3233.     unpredictable behavior during execution of preinit.
  3234.  
  3235.   - NEW FEATURE:  The parser now calls two new optional methods in the
  3236.     game program.  These new methods are intended to help speed up the
  3237.     identification of words when many objects have the same vocabulary.
  3238.     If the new methods are not present, behavior is the same as before,
  3239.     so existing games will run unchanged.  The new methods are validDoList
  3240.     and validIoList; they are associated with the "deepverb" object for
  3241.     the current command.  They are called with three parameters:  the actor,
  3242.     the prep, and the other object (indirect object for validDoList and
  3243.     direct object for validIoList; the value of the parameter will be nil
  3244.     if not applicable).  These methods are called prior to the disambiguation
  3245.     pass (using verDoXxx/verIoXxx), and prior to testing any objects with
  3246.     validDo/validIo.
  3247.  
  3248.     The return value of validDoList/validIoList is a list of all of the
  3249.     valid objects for the verb.  It is fine for these methods to return
  3250.     *too many* objects, since each object is still tested with validDo
  3251.     (or validIo) and the appropriate verDoXxx/verIoXxx methods.  Generally,
  3252.     these methods should simply return a list of all of the accessible
  3253.     objects in the actor's current location (or the actor's location's
  3254.     location), plus a list of all of the "floating" objects (which use
  3255.     methods for the location properties).
  3256.  
  3257.     An appropriate definition for validDoList in the deepverb object
  3258.     appears below:
  3259.  
  3260.        validDoList(actor, prep, iobj) =
  3261.        {
  3262.            local ret;
  3263.           local loc;
  3264.  
  3265.        loc := actor.location;
  3266.        while (loc.location) loc := loc.location;
  3267.        ret := visibleList(actor) + visibleList(loc)
  3268.               + global.floatingList;
  3269.        return(ret);
  3270.        }
  3271.  
  3272.     This same definition (with the name changed) is appropriate
  3273.     for validIoList in deepverb.  This returns a list of all of the
  3274.     objects visible in the current location, plus the global list of
  3275.     all floating objects; this should be a superset of the list of
  3276.     accessible objects in most games.  The only verbs that normally
  3277.     requires a different value of validIoList/validDoList are verbs
  3278.     such as "ask" and "tell" that allow any object (whether accessible
  3279.     or not) to be used as indirect objects; for these, simply use this
  3280.     definition:
  3281.  
  3282.        validIoList = nil
  3283.  
  3284.     This takes advantage of the reverse compatibility feature:  when the
  3285.     method returns nil, all objects with matching vocabulary are used.
  3286.  
  3287.     The one additional game change required to take advantage of this
  3288.     new feature is that global.floatingList must be built during
  3289.     initialization.  This can be done easily with the following loop:
  3290.  
  3291.        global.floatingList := [];
  3292.        for (o := firstobj(floatingItem) ; o ; o := nextobj(o, floatingItem))
  3293.           global.floatingList += o;
  3294.  
  3295.     This should be placed in the preinit or init function.  Note that
  3296.     all objects which have location methods should be declared to be
  3297.     of class floatingItem:
  3298.  
  3299.       class floatingItem: object;
  3300.  
  3301.     This class doesn't do anything except serve as a flag that an
  3302.     object should be placed in the floatingList.
  3303.  
  3304. 2.0.7  12/01/92  MS-DOS bug fix release
  3305.  
  3306.   - The run-time occasionally missed the \ in an escape sequence in
  3307.     output strings.
  3308.  
  3309.   - The run-time couldn't operate in 132 column mode.
  3310.  
  3311.   - The run-time abnormally terminated in the file selection dialog
  3312.     when the dialog box was exactly filled.
  3313.  
  3314. 2.0.6  11/24/92  first general MS-DOS TADS 2.0 release
  3315.  
  3316.